I am trying to get the text of a passage from the API in the following format:
"[VerseText]"%20([FullPassageRef])
Here is what I've tried so far:
- Using style=quotation gets very close to what I would like, but I'd like to remove the version from the citation.
- Using this with the eachVerse="[VerseText]"%20([FullPassageRef]) doesn't work because that results in the reference being interspersed throughout the text of the passage (following each verse).
- I tried using header="[VerseText]"%20([FullPassageRef])&eachVerse=%20, but that just returns "[VerseText]" (Psalm 23:1–6) (i.e. without the VerseText expanded).
- The closest I've been able to get to what I actually want is to use header="&footer="%20([FullPassageRef]), and plan on removing the new lines with some post-processing (passages like Psalm 23 would also need some additional post-processing to make sure the tabs at the beginning of each line were being removed).
In summary, options #1 and #4 seem like the best options so far, but they require some post-processing, which I'd like to avoid, if possible. Is it possible to do what I want to do without post-processing?