Thanks really handy to have, thanks!
If youāre referring to the theme a couple of posts above, thatās the Minimal theme with a couple of tweaks.
Hi @joebuhlig!
I did some work on this in a fork, @Joschua. You likely donāt want to pull it in directly but I made some adjustments for my own purposes.
This sounds like something that I was really interested in. Would you be willing to show a short video of how this update works in action?
I notice that Bible Gateway is pretty footnote/commentary lightā¦ even on Bibles which (if I recall correctly) require that their notes be reprinted with every reproduction of the Biblical text
I bring this up because one of the big reasons I wanted to do this was because my gigantic study bible is just too big to read away from a desk and I wanted to read some Bibles with heavy commentary (particularly the NRSV w/ Apocrypha) but if I recall correctly from the other thread, the process requires turning footnotes off? Is there another Bible site to which this can be applied? Iād still like to read the Louis Segond (might help my French) but reallyā¦ some way of turning an ebook into markdown might be easiest, because I think I have ebook versions of one of my bibles. Iāll have to check.
Iām hoping someone can help me with a small problem Iām having with this. I followed all the instructions and was able to grab the ESV from BibleGateway. Unfortunately, even though I have headers set to āfalseā in bg2obs.sh, Iām still getting them in my text. For example, here is what I get for Genesis 8.19:
v19
Every beast, every creeping thing, and every bird, everything that moves on the earth, went out by families from the ark.Godās Covenant with Noah
As you can see, the header from BG getās stuck on the end of the previous verse.
Iāve made sure I have the latest version of the bg2md.rb script and bg2obs.sh. Is there anything else I can do to keep these out? Or are any of you good enough with regular expressions to help me remove them all quickly?
Thanks for any help!
Thanks for this - this is going to be really useful to me as a preacher in preparing messages and my own Bible Study - thanks for sharing. Still thinking through how I will use this and I see loads of potential.
I am trying to download the NIV version as this is the version I speak from. I have followed the process on GitHub and it downloads all the folders and files but when I open a file in Obsidian I only get the links as seen in the screenshot below. I am not used to programming so could have missed something obvious. I am also new Obsidian.
I also get the following in Terminal with a load error:
Are you able to help me?
Hey @joshmay , I think you might have missed a small step in the installation.
In the error output you can see cannot load such file -- colorize
. That leads me to believe that the colorize
module might not be installed. Have a look at the bg2md installation guide or try running sudo gem install colorize optparse clipboard
.
Let me know if that worked!
Hi @Joschua, thanks for this. I have run the āsudo gem install colorize optparse clipboardā and this has enabled me to download the files with the actual scripture in them as well.
However although I used the ābash bg2obs.sh -I NIVā command it has downloaded the WEB version ops the Bible.
Here is a screenshot of the commands that I typed and you can see it says āstarting download of WEB Bibleā:
Any thoughts on this?
Thank you
Glad to hear it works now! Have you tried running bash bg2obs.sh -i -v NIV
. In the script option summary it specifies -v
to select a version.
Thatās great, thank you for your patience! Now have the NIV, and using in Obsidian. This is going to make such a difference to my preaching prepā¦can now link in illustrations, book notes and scriptures and other resources through the link function. Thinking I will download other Bible versions as well.
One question at the end of each chapter of the Bible in the NIV version I have the text āNIV Reverse Interlinear Bible: English to Hebrew and English to Greek. Copyright Ā© 2019 by Zondervan.More on the NIVā
Not sure if there is an easy way to automate the removal of this in each file. No matter if not, but though I would check before I start downloading other versions.
Thanks again for your help!
You should be able to use a text editor like Atom or Notepad++ to do a Find and Replace in all the files in your directory. Just find that text and replace it with nothing.
Great - thanks @RogerP will give this a go.
Exciting update!
Thanks to my generous patreons the Bible Study kit is now available on Obsidian Publish.
Now you can play with the kit without downloading it to your hard drive! V2 includes some tweaks and fixes and is integrated more closely with how I use Obsidian for note taking and digital gardening.
Thanks for your support!
Hey there, seems like you are pretty good at scripting? I have a large OneNote file I would like to get my notes into obsidianā¦ I also am trying to figure out how to auto-link the references that I already have. Thirdly, I would like it to be able to type in a range (i.e. [[Genesis 1:1-2]]. Would you be able to help with any of these?
I have figured out how to do a massive āsearch and replaceā and use regex in Atom to put brackets around all of the entriesā¦ Does anybody have a scripting idea for a range of references? I know I can have Excel add a numerical range but thatās a long way aroundā¦
I wish I had a solution for ranges like that. What Iāve done is just make smaller ranges into multiple links. For example, Genesis 1:1ā2 would be:
[[Gen-01#v1|Genesis 1:1]]ā[[Gen-01#v2|2]]
What this does is allow me to hover over an individual verse number and see it in the popover preview. For a range of three verses, I also link the dash. Genesis 1:1ā3 becomes:
[[Gen-01#v1|Genesis 1:1]][[Gen-01#v2|ā]][[Gen-01#v3|3]]
In this example, hovering over āGenesis 1:1ā shows verse 1, hovering over āāā shows verse 2, and hovering over ā3ā shows verse 3. If the range is longer than three verses, I just link to the first verse in the range and follow the link when I want to read the entire range. This is not perfect, but it is what works for now.
There is a feature request for Support for Linking To/Embedding Ranges which, if implemented, would solve this problem.
Your approach is a really good workaround for now. I am hoping to work on a plugin of sorts than can apply that formatting automatically. Itās quite the hassle to type otherwise.
Thank you @Joschua ! I downloaded the script from your Github repo, it works fine, except I donāt have the Bible.md file. I canāt find it in the repo and the script did not create this file.
You can use the provided
The Bible.md
file as an overview file.
I guess I can create a file and make links to the books manually, but If thereās a ready-to-use overview file Iād like to check it out.
Never mind, I made an overview file.
Yes, thatās exactly what I was thinkingā¦ typing it out is quite an issue. I guess I will use this for now and wait for the functionality to come out later.