# WOL Reference Tools An [Obsidian](https://obsidian.md) plugin that lets you look up Bible verses and references from [wol.jw.org](https://wol.jw.org), and add them to your notes inline, in a modal or popover, or in the sidebar. ### How it works ℹ️ The plugin sends the 'value' of the reference - whatever is within the `!!`, and send that value to a Cloudflare worker, which does a search on wol.jw.org, eg: `[https://wol.jw.org/en/wol/l/r1/lp-e?q=ps83:18](https://wol.jw.org/en/wol/l/r1/lp-e?q=ps83:18)`. It then uses [cheerio](https://cheerio.js.org/) to parse the HTML, and returns an object containing the reference text and the verse text. ``` { "results": [ "
18 May people know that you, whose name is Jehovah,
You alone are the Most High over all the earth.
" ] } ``` Some light formatting is applied for styling purposes, but the results are left otherwise unchanged. ### How to use Wrap any reference in `!!double exclamation marks!!` and it becomes a clickable link. Click it to see the full text from [wol.jw.org](https://wol.jw.org) in a modal or popover. The sidebar panel automatically lists and loads all references in the active note. To show a verse inline within your note as you're typing, add a `>` after the double exclamation marks: ``` !!John 3:16!!> ``` Add `scriptures` to your frontmatter using the double exclamation marks and combine that with a `dataviewjs` query to show any references you've added: ``` --- scriptures: - "!!Daniel 12:1!!" - "!!Revelation 12:7, 9!!" --- ``` ```dataviewjs const scriptures = dv.current().scriptures ?? []; scriptures.forEach(s => dv.paragraph(s + ">