Skip to content

Latest commit

 

History

History
81 lines (61 loc) · 2.08 KB

README.md

File metadata and controls

81 lines (61 loc) · 2.08 KB

av-obsidian

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.

drawing

Features

  1. One chapter per note, one verse per line.
  2. Navigational links: Previous/Next chapter links.
  3. italicized words to indicate translation additions
  4. YHWH formatted LORD as in the original print
  5. original print paragraph markings and chapter notes
  6. KJV Cambridge
  7. _index and Book index pages

Usage

  1. Download the current release and extract locally
  2. 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]]

Styling

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;
}

Normal

normal

Styled

naked embeds

Building

# builds release artifact
make
make build

# run tests
make test

# clean up
make clean