Convert USFX formatted files to TSV
To prepare the files for importing into a database more easily.
- Install quick_xml crate (
cargo add quick-xml
) - Copy the source XML file to
./xml/source.xml
cargo run main.rs > output.tsv
- Import
output.tsv
into your database
- One verse per line
- Tab delimited
- Fields:
- Book (abbreviated)
- Chapter (number)
- Verse (number)
- Text (string)
- Add comments
- Implement command line arguments
- Rename the main file