schierlm/BibleMultiConverter

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

Closed this issue · 2 comments

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.

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.

That worked. Thank you for your help!