diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/404.html b/404.html new file mode 100644 index 0000000..72fdaac --- /dev/null +++ b/404.html @@ -0,0 +1,1278 @@ + + + +
+ + + + + + + + + + + + + + + + +There are some simple filters to select which data to import. For more complex filtering, a separate plugin or script should be used.
+All filters can be used with wildcard. The filters are case-sensitive.
+--exclude-notes
, --include-notes
)--exclude-notes-with-tags
, --include-notes-with-tags
)--exclude-tags
, --include-tags
)To check the exact command, visit the help page (--help
).
Filtering by notebooks is not possible, because nesting can yield some ambiguities.
+# show the help
+jimmy-cli-linux --help
+
+# import specific nots only
+jimmy-cli-linux obsidian_vault/ --format obsidian --include-notes "Sample note" "Second sample note"
+
+# exclude notes with a tag
+jimmy-cli-linux obsidian_vault/ --format obsidian --exclude-notes-with-tags "ignore this tag"
+
+# don't import any tags
+jimmy-cli-linux obsidian_vault/ --format obsidian --exclude-tags "*"
+
Can be activated by combining the two CLI arguments --stdout-log-level CRITICAL --no-progress-bars
.
The output can be customized in the following ways.
+Include Markdown frontmatter by --frontmatter
. Currently, Joplin and Obsidian compatible frontmatter (--frontmatter joplin
respectively --frontmatter obsidian
) can be generated. Alternatively, all available metadata can be included (--frontmatter all
).
The output folder can be specified by --output-folder OUTPUT_FOLDER
.
Resources are stored by default next to the Markdown file. When using --local-resource-folder FOLDER
, the resources are stored relative to the Markdown files. For example in an media
folder, like in QOwnNotes.
When using --global-resource-folder FOLDER
, the resources are stored relative to the output folder. This means the resources of all files are stored in the same folder. This folder can be also outside of the root folder. Like ../assets
in Logseq.
The note tree in the intermediate format can be shown by --print-tree
.
$ jimmy-cli-linux .cache/arbitrary_folder/arbitrary_folder/ --print-tree
+[09/17/24 17:39:20] INFO Importing notes from ".cache/arbitrary_folder/arbitrary_folder"
+ INFO Start parsing
+[09/17/24 17:39:21] INFO Finished parsing: 3 notebooks, 7 notes, 3 resources, 1 note links
+Note Tree
+└── 📘 20240917T153920Z - Jimmy Import
+ └── 📘 arbitrary_folder
+ ├── 📖 sample
+ │ ├── 🎴 test.png
+ │ └── 🔗 link to second_sample_file
+ ├── 📖 plaintext
+ ├── 📖 test
+ ├── 📖 Big-Fish
+ └── 📘 nested_arbitrary_folder
+ ├── 📖 LibreOffice Writer
+ │ └── 🎴 1000000100000B5F00000449B7E060775BACC2F0.png
+ ├── 📖 asciidoc
+ │ └── 🎴 test\_image
+ └── 📖 second_sample_file
+ INFO Start filtering
+ INFO Finished filtering: 3 notebooks, 7 notes, 3 resources, 1 note links
+ INFO Start writing to file system
+ INFO Converted notes successfully to Markdown. Please verify that everything was converted correctly.
+ INFO Feel free to open an issue on Github, write a message at the Joplin forum or an email.
+
+Notebooks 100%|████████████████████████████████████████████████████████████████████████████| 3/3 [00:00<00:00]
+Notes 100%|████████████████████████████████████████████████████████████████████████████| 7/7 [00:00<00:00]
+Resources 100%|████████████████████████████████████████████████████████████████████████████| 3/3 [00:00<00:00]
+Note Links 100%|████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00]
+
$ jimmy-cli-linux .cache/obsidian/obsidian_vault --format obsidian --exclude-tags "*" --print-tree
+[09/17/24 17:42:14] INFO Importing notes from ".cache/obsidian/obsidian_vault"
+ INFO Start parsing
+ INFO Finished parsing: 2 notebooks, 2 notes, 3 resources, 4 tags, 4 note links
+Note Tree
+└── 📘 20240917T154214Z - Jimmy Import
+ ├── 📖 Sample note
+ │ ├── 🎴 markdown image
+ │ ├── 🔖 inline-tag-obsidian
+ │ ├── 🔖 frontmatter-tag-obsidian
+ │ ├── 🔖 another-tag-obsidian
+ │ ├── 🔗 alias
+ │ └── 🔗 internal link markdown syntax
+ └── 📘 folder
+ └── 📖 Second sample note
+ ├── 🎴 test.png
+ ├── 🎴 plaintext.txt
+ ├── 🔖 inline-tag-obsidian
+ ├── 🔗 Sample note
+ └── 🔗 Sample note alias
+ INFO Start filtering
+ INFO Finished filtering: 2 notebooks, 2 notes, 3 resources, 4 tags, 4 note links
+Note Tree Filtered
+└── 📘 20240917T154214Z - Jimmy Import
+ ├── 📖 Sample note
+ │ ├── 🎴 markdown image
+ │ ├── 🔗 alias
+ │ └── 🔗 internal link markdown syntax
+ └── 📘 folder
+ └── 📖 Second sample note
+ ├── 🎴 test.png
+ ├── 🎴 plaintext.txt
+ ├── 🔗 Sample note
+ └── 🔗 Sample note alias
+ INFO Start writing to file system
+ INFO Converted notes successfully to Markdown. Please verify that everything was converted correctly.
+ INFO Feel free to open an issue on Github, write a message at the Joplin forum or an email.
+
+Notebooks 100%|████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00]
+Notes 100%|████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00]
+Resources 100%|████████████████████████████████████████████████████████████████████████████| 3/3 [00:00<00:00]
+Note Links 100%|████████████████████████████████████████████████████████████████████████████| 4/4 [00:00<00:00]
+