-
Notifications
You must be signed in to change notification settings - Fork 354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: Fix markdown formatting to escape backticks #56
Fix: Fix markdown formatting to escape backticks #56
Conversation
Not a bible expert. (nice sed by the way), but - the very first verse appears wrong to my humble eyes.
the markdown is showing the escape, and if this was code wrapping and between a backtick and a single quote doesnt make a ton of sense. |
As I said in OP, I assume that In order to preserve the original text (i.e.
Correct me if i'm missing something. |
I’m not sure why but it looks like the back tik is being used as the start tik and the regular tik as the closing tik. I’m not sure I see a need or reason for that. |
Yes, I'm not sure why in the original |
i see the same used in all the other formats e.g. |
Opened #58 (comment), we should resume the discussion there. |
Fixes #55
Simply replaced all occurances of the
`
with\`
. I assume all occurrences of`
are isolated and used only with its corresponding'
for square bracketed phrases e.g. https://www.bible.com/bible/821/GEN.1.YLT98.Let me know if there might be issues, i'm not extremely familiar with text formatting of bible text.