Details
-
Type: Bug
-
Status: Closed (View Workflow)
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 1.5 (was 1.0.7)
-
Fix Version/s: 1.6.1
-
Component/s: o.c.jsword.book.sword
-
Labels:None
Description
The conf is specified by:
key=value
Today the parsing merely looks for the first = on the line to split the line.
The problem is that a "continuation line", i.e. one that follows a line ending with a \ may have an = sign in it.
The parsing should use the regular expression
^[A-Za-z0-9_]=(.*)$
to detect keys.