schierlm / BibleMultiConverter

Converter written in Java to convert between different Bible program formats
Other
126 stars 32 forks source link

Issue using "-inline" to convert Bible with more than one verse per line #72

Closed amrhone closed 2 years ago

amrhone commented 2 years ago

I'm having trouble converting a USFM file to Logos.html with more than one verse per line. The command I've been inputting is below:

java -jar BibleMultiConverter-AllInOneEdition.jar USFM WEB LogosHTML WEB.html Bible -inline

I'm assuming the issue is with how I've input the command (I'm inexperience in using the command line). Any help with this issue would be appreciated.

schierlm commented 2 years ago

The order of arguments is <outfile> <versemap> <template> <flags>. You are missing the template, which may be -.

java -jar BibleMultiConverter-AllInOneEdition.jar USFM WEB LogosHTML WEB.html Bible - -inline should work for you.

amrhone commented 2 years ago

That worked. Thank you for your help!