An Obsidian plugin to show Bible verses on hover.
https://github.com/joeriddles/bible-verse-quicklook.git
[!NOTE]
Bible book abbreviations are generated using the Python script found in theabbreviation_generatorfolder.
To get started, set up your local dev environment by following steps 1โ3 in the official Obsidian docs for building a plugin.
Basically, the steps look like this:
mkdir -p bible-verse-quicklook/.obsidian/plugins
cd bible-verse-quicklook/.obsidian/plugins
git clone https://github.com/joeriddles/bible-verse-quicklook.git
npm i
npm run dev
Then open the top-level bible-verse-quicklook/ folder in Obsidian as a new vault, enable community plugins in the settings, and enable the Bible Verses Quicklook plugin.
Remember to run npm run dev while developing or you won't see your changes in Obsidian.
Note: releases are now done using GitHub Actions and Releases.
To update the package version:
npm version [major|minor|patch]
To create a release:
git tag x.y.z # done by `npm version`
git push origin --tags