DarkBuffalo / org-verse

gimme verse !!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

org-verse

org-verse is a minor mode for orgmode to easily find bible references in your buffer and display the verse in a sidebar by clicking on the reference formatted as a button automatically by this package.

Installation

Straight

(use-package org-verse
	:straight (:host github :repo "DarkBuffalo/org-verse")
	:init
	(setq org-verse-directory "~/notes"
				org-verse-db-table-name "biblefr"))

Database

the verses are in an sqlite database.

CREATE TABLE biblefr (
	book INTEGER NOT NULL,
	chapter INTEGER NOT NULL,
	nbverse INTEGER NOT NULL,
	verse TEXT NOT NULL)

All you have to do is name your database bible.db and place it in the home folder.

if she has another name.

(setq org-verse--db-file-name "/yourdatabase.db")

Screenshots

Demo

images/demo.gif

magit-section

images/magit-section.png

TODOS [1/4]

  • [X] gif
  • [ ] Fix magit-section “Cannot hide root section”
  • [ ] define your canon
  • [ ] Fix regex verse , - (4:1 <> 4:13)

About

gimme verse !!


Languages

Language:Emacs Lisp 100.0%