thl-export v1.1.2
The Hit List Exporter
A tool to export your hit lists from Andy Kim's The Hit List todo list app. Supports both JSON and Markdown export.
Usage:
thl-export [-m] <thl-sqlitepath> <export-destination>
-m --markdown outputs markdown files instead of json filesInstall
If you have NPM installed, the preferred way is to install using:
npm i -g thl-export
And then run the thl-export command according to the Usage instructions below.
You can also run the command from the source code of this project by cloning this repo and using these instructions instead:
- First install Node.js with your favorite package manager
- Clone this repo
- Run
npm installinside of it - Run using
node index.mjs(instead of usingthl-export)
Usage
The Hit List stores its library inside of a file called either The Hit List.thllibrary or The Hit List Library.thllibrary.
This file is typically stored here:
/Users/[your username]/Library/Application Support/The Hit ListWhen you find that file, right-click on it and choose Show Package Contents. Inside of the folder that appears will be a file called library.sqlite3. This is the file that we want.
You can drag this file onto a Terminal window to get its filepath and also to pass it in as the first argument to the thl-export command.
Here's an example of how to export our library as JSON (assuming we found it inside of a file called The Hit List.thllibrary):
$ thl-export ~/Library/Application\ Support/The\ Hit\ List/The\ Hit\ List.thllibrary/library.sqlite3 exportAnd here's an example for how to export using Markdown instead of JSON:
$ thl-export -m ~/Library/Application\ Support/The\ Hit\ List/The\ Hit\ List.thllibrary/library.sqlite3 exportThis will create a directory called export in the current directory, and save all your lists into that folder while making sure to:
- Preserve your hierarchy of folders
- Preserve your hierarchy of tasks, as well as the notes inside of them
Exporting attached files is not exported. (Feel free to send PRs).
JSON vs Markdown export
- With JSON, you can view and manipulate the JSON files using the
jqcommand. - Markdown export currently does not include completed or crossed-off items, only pending TODOs. Use JSON if you want those, or submit a PR that adds a command-line option to include them.
License
AGPL-3.0.
History
1.1.2- Add better error handling.1.1.1- Don't include<details>if note contains<symbol.1.1.0- Hide notes using<details>in markdown files.1.0.1- Replace$with\$in tasks in markdown files for proper rendering.1.0.0- Added markdown support via-m.0.0.2- Attempt at fixing npm tool install.0.0.1- Initial release.