๐Ÿ“ฆ joeriddles / bible-verse-quicklook

An Obsidian plugin to show Bible verses on hover.

โ˜… 0 stars โ‘‚ 0 forks ๐Ÿ‘ 0 watching โš–๏ธ MIT License
๐Ÿ“ฅ Clone https://github.com/joeriddles/bible-verse-quicklook.git
HTTPS git clone https://github.com/joeriddles/bible-verse-quicklook.git
SSH git clone git@github.com:joeriddles/bible-verse-quicklook.git
CLI gh repo clone joeriddles/bible-verse-quicklook
joeriddles joeriddles Fix typo in README image 8341614 1 years ago ๐Ÿ“ History
๐Ÿ“‚ main View all commits โ†’
๐Ÿ“ .github
๐Ÿ“ .vscode
๐Ÿ“ src
๐Ÿ“ static
๐Ÿ“„ .editorconfig
๐Ÿ“„ .eslintignore
๐Ÿ“„ .eslintrc
๐Ÿ“„ .gitignore
๐Ÿ“„ .npmrc
๐Ÿ“„ esbuild.config.mjs
๐Ÿ“„ jest.config.ts
๐Ÿ“„ LICENSE
๐Ÿ“„ main.ts
๐Ÿ“„ manifest.json
๐Ÿ“„ package-lock.json
๐Ÿ“„ package.json
๐Ÿ“„ pattern.py
๐Ÿ“„ README.md
๐Ÿ“„ styles.css
๐Ÿ“„ tsconfig.json
๐Ÿ“„ version-bump.mjs
๐Ÿ“„ versions.json
๐Ÿ“„ README.md

Bible Verse Quicklook ๐Ÿ”

Features

  • ๐Ÿ“– Hover over a Bible verse or abbrevation to see it's full text.

Development

[!NOTE]
Bible book abbreviations are generated using the Python script found in the abbreviation_generator folder.

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.

Release

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