I have a huge library of books inside of a program called Logos. It is used for Bible study, theological studies, research, preaching, etc. I wanted a way to have those items tagged in my Obsidian vault so that when I go to write content, it will show up in my tags along with all of my notes from YouTube, podcasts, articles, and other books.
Logos allows you to export your library into a CSV file. Using the JSON/CSV Importer and a handlebar template, I was able to get all of my Logos resources added as notes so I can use them in my library.
Here are the high-level steps.
Install the JSON/CSV Importer plugin for Obsidian
Export your library from Logos
Prepare your import file
Create a Handlebar template in Obsidian (I have provided mine).
Thanks, Ronni! Glad you were able to get something out of it. And (as is probably evident in my writeup) I went through a lot of trial and error to get it to work. So, hopefully, I can save you some time.
The one thing I haven’t figured out yet is the tag situation. I’m going to try using a spreadsheet program (I use LibreOffice), creating a new column, concatenating “My Tags”, “Community Tags”, and “Subjects” into it, and putting a hashtag at the beginning of every element somehow. Once it’s imported with tags, I’ll use Tag Wrangler to clean it up and organize it the way I want.
By following your approach, I created my own workflow. You can see the entire workflow at Logos 서재 Obsidian에서 정리하기 - Calm Shouting. Although it’s written in Korean, the code snippets in the middle should be easy to understand. Here are the additions I made:
The row names should not have any spaces, as the plugin failed to process them. I deleted all the spaces in each row name, just like “ResourceID” instead of “Resource ID”.
Links for each book: I created links based on the File Name data. They work well on both PC and mobile for most of my items though I have not tested all.
Logos Index File: Using the Dataview plugin, I organized the entire book list into a table by language (Korean, English, and other languages). Clicking on the file name takes you to that note, and clicking on the link opens the app to that book, which is quite convenient.
Thanks to the valuable information you provided, I am deeply grateful.