Craft By Zen

Obsidian Logo
Obsidian Logo

1 min read

šŸ”–pkm   šŸ”–programming

Using my custom book macro for Obsidian QuickAdd Plugin

I started taking notes on Morgan Houselā€™s book, The Psychology of Money, and I wanted to have an automatic note created in my Obsidian vault.

I have Nick Miloā€™s Ideaverse installed and wanted to take advantage of the QuickAdd plugin. The example they give for the BookFinder script was easy to follow and extend.

I created a gist for it. The original script did not have much error handling. Something to expand on in the future is to have that error handling within Obsidian, which I would like to see.

Also, I used the suggester API to give the user options on which returned item they care about using the Google Books API.

And hereā€™s my personal template using Obsidian properties.

---
by: "{{VALUE:authors}}"
title: "{{VALUE:title}}"
tags:
  - "#highlights/waiting"
in:
  - "[[Books]]"
year: {{VALUE:year}}
published: "{{VALUE:publishedDate}}"
related: 
category: "{{VALUE:categories}}"
pages: "{{VALUE:pageCount}}"
publisher: "{{VALUE:publisher}}"
isbn10: "{{VALUE:isbn10}}"
isbn13: "{{VALUE:isbn13}}"
created: "{{date:YYYY-MM-DD}}"
---

# {{VALUE:title}}

![poster]({{VALUE:Poster}})  

- Subtitle: {{VALUE:subtitle}}

### My Notes  


  
### Details  

{{VALUE:description}}

If you have any questions about the script, please let me know. I may create a personal repo of different Macros that fetch data from other APIs.