KGrzeg / journey-to-obsidian

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Journey to Obsidian converter

The app converts .json files exported from Journey to markown files, that can be read by Obsidian

Tested on node 14.x

Install

🐧 npm install

Run

🐧 mkdir -p output
🐧 npm start # use default directories
🐧 npm start -- --help
🐧 npm start -- -i myjsons -o mymarkdowns

The input is path to the directory that contains .json files; The output is path to the directory that will contains .md files; The directory must exists before run the app.

The dark dev side

Generate fake data

🐧 mkdir -p data
🐧 N=9
🐧 for i in {0..$N}; do npm run --silent fake > "data/fake_$i.json"; done

Clean fake data

🐧 rm data/*

About


Languages

Language:JavaScript 100.0%