Closed leojonathanoh closed 4 weeks ago
Nice work on the PR, just commenting here so you know I looked at it. I haven't done the research into the original text to figure out which backticks or single quotes are correct. I appreciate the work you are doing sir.
Haven't done research either. Though based on generally looking around the various DBs, I would assume that all the occurrences of backtick-singlequote are syntactically intact (i.e. no syntax errors). If that is the case it shouldn't be difficult to replace them with square brackets.
Makes sense to me.
I think converting the combo of ` ' to [ ] makes sense and is more legible.
think so too. Should #61 be worked on first? Then all db formats can be generated with this change.
i tried to fix this but was hindered by the fact that `
and '
was also used for speech expressions and not just in-addition-to expressions. E.g.
Here we see an in-addition-to expression (`
is'
) nested in a speech expression (`
Let the earth yield tender grass, herb sowing seed, fruit-tree (whose seed `
is'
in itself) making fruit after its kind, on the earth:'
).
Because the use of `
and '
is not isolated to in-addition-to expressions, fixing this would be more challenging that initially thought.
Current
A combination of a backtick
`
and a single-quote'
is used to enclose "in-addition-to" expressions.Discussion
As brought up in the discussion in https://github.com/scrollmapper/bible_databases/pull/56#issuecomment-817379168, in all the available database formats(
csv
,json
,md
,mssql
,sql
,tsql
,txt
,xml
), it appears that a combination of a backtick`
and a single-quote'
(e.g. It is a `very' sunny day) is used as the equivalent of square brackets normally used in writing (e.g. It is a [very] sunny day) to enclose "in-addition-to" expressions. Compare:.txt
: https://github.com/scrollmapper/bible_databases/blob/258c8b386894245bc2e8bfbd96d3600f0c2de8ae/txt/YLT/1%20Genesis%20-%20Young's%20Literal%20Translation%20(YLT).txtIs there a specific reason for using this backtick and single-quote syntax for those expressions? Or should square brackets be used instead?