A .net parser and rendering toolkit for USFM.
USFMToolsSharp is a parser and a collection of renderers for .net
You can install this package from nuget https://www.nuget.org/packages/USFMToolsSharp/
We targeted .net standard 1.0 so .net core 1.0, .net framework 4.5, and mono 4.6 and higher are the bare minimum.
With Visual Studio just build the solution. With the .net core tooling use dotnet build
Yes please! A couple things would be very helpful
- Testing: Because I can't test every single possible USFM document in existance. If you find something that doesn't look right in the parsing or rendering please submit an issue.
- Adding support for other markers to the parser. There are still plenty of things in the USFM spec that aren't implemented.
- Adding support for other markers to the HTML renderer
- Adding other renderers (LaTeX, PDF, EPUB, JSON, etc.). Some of those renderers might not be possible in .net standard and if that is the case we'll just need to create another repo to contain the renderer
There a couple useful classes that you'll want to use
This class is a tree of objects that represent a USFM document There are a couple of methods and properties that you'll find useful
USFMDocument output = new USFMDocument();
// The contents of the document
output.Contents;
// To find all the child markers of a certain type (in this case chapters)
output.GetChildMarkers<CMarker>();
// To merge the contents of one USFMDocument with another
USFMDocument otherDocument = new USFMDocument();
output.Insert(otherDocument);
This class creates an abstract syntax tree from a USFM string. It can also be passed a list of specific markers as strings into its constructor to ignore them if needed.
Example:
USFMParser parser = new USFMParser();
var contents = File.ReadAllText("01-GEN.usfm");
USFMDocument output = parser.ParseFromString(contents);
For more information, please look into the repository.
HTML Renderer for USFM
For more information, please look into the repository.
Docx Renderer for USFM
For more information, please look into the repository.
JSON Renderer for USFM