Skip to content

Commit

Permalink
Add ParatextStripped export format
Browse files Browse the repository at this point in the history
  • Loading branch information
schierlm committed Aug 27, 2024
1 parent 3f1df87 commit f3f9b0c
Show file tree
Hide file tree
Showing 6 changed files with 696 additions and 98 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,9 @@ tagged OT/NT/Deuterocanonical content from such a file. It can also be used to c
from/to **ParatextDump** (which is a diffable plain text dump of the internal Paratext
structure and useful for comparing different Paratext formats), **ParatextCompact* (a more compact
representation intended for archival which will remain forward compatible) and **ParatextVPL** (which is
a different diffable format that looks more like VPL, but uses Paratext tags) formats.
a different diffable format that looks more like VPL, but uses Paratext tags) formats. In combination
with the **ParatextStripped** format, various features of the file can be stripped or it can be
made compatible to an older USFM version.

The **MyBibleZoneListDownloader** tool (part of SQLite edition) can be used to download
the list of available MyBible.Zone modules from the module registry (that is also queried
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public Collection<Module<ExportFormat>> getExportFormats() {
result.add(new Module<ExportFormat>("StrongConcordance", "Add concordance information to a Strong dictionary", StrongConcordance.HELP_TEXT, StrongConcordance.class));
result.add(new Module<ExportFormat>("ScrambledDiffable", "Like Diffable, but with scrambled text; for tests with non-free bibles.", ScrambledDiffable.HELP_TEXT, ScrambledDiffable.class));
result.add(new Module<ExportFormat>("ScrambledParatextDump", "Like ParatextDump, but with scrambled text; for tests with non-free bibles.", ScrambledParatextDump.HELP_TEXT, ScrambledParatextDump.class));
result.add(new Module<ExportFormat>("ParatextStripped", "Export parts of a Paratext bible", ParatextStripped.HELP_TEXT, ParatextStripped.class));
result.add(new Module<ExportFormat>("Volksbibel2000", "Export format for reimporting into Volksbibel 2000", Volksbibel2000.HELP_TEXT, Volksbibel2000.class));
result.add(new Module<ExportFormat>("OnLineBible", "Export format for importing into OnLine Bible", OnLineBible.HELP_TEXT, OnLineBible.class));
result.add(new Module<ExportFormat>("BrowserBible", "Export format for The Browser Bible 3 by Digital Bible Society", BrowserBible.HELP_TEXT, BrowserBible.class));
Expand Down
Loading

0 comments on commit f3f9b0c

Please sign in to comment.