Generates a King James (Authorized Version) text that is formatted for import into an Obsidian vault.
It uses Obsidian markdown and LaTeX features to approximate the original print as much as possible.
- One chapter per note, one verse per line.
- Navigational links: Previous/Next chapter links.
- italicized words to indicate translation additions
- YHWH formatted LORD as in the original print
- original print paragraph markings and chapter notes
- KJV Cambridge
_index
and Book index pages
- Download the current release and extract locally
- Copy
av
into your obsidian vault.
### Chapter link
[[Genesis 1]]
### Verse Link
[[Genesis 1#^1]]
### Verse Link With Alias
[[Genesis 1#^4|Genesis 1:4]]
### Verse Transclusion
![[Malachi 4#^5]]
![[Malachi 4#^6]]
### Chapter Transclusion
![[1 John 3#1 John 3]]
The default Obsidian theme (and most themes) create excess whitespace around transcluded verses. I use the following CSS in a snippet to make notes with transcluded scriptures look nicer.
.markdown-embed-title { display:none; }
.markdown-preview-view .markdown-embed-content p:first-child { margin: 0 !important;}
.markdown-preview-view .markdown-embed-content p:last-child { margin: 0 !important;}
.markdown-preview-view .markdown-embed, .markdown-embed .markdown-preview-view {
padding:0px 15px 0px 3px !important;
margin:0 !important;
max-height: unset !important;
}
/* the link on the top right corner */
.markdown-embed-link {
top: 3px !important;
right: 5px !important;
padding:0 !important;
margin:0 !important;
}
# builds release artifact
make
make build
# run tests
make test
# clean up
make clean