-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
102 lines (98 loc) · 3.27 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
site_name: jimmy
site_description: A tool to import your notes from various formats to Markdown.
# Repository
repo_name: marph91/jimmy
repo_url: https://github.com/marph91/jimmy
theme:
name: material
# add open graph metadata (for example for discourse links)
# https://mrkeo.github.io/reference/meta-tags/#customization
custom_dir: docs/overrides
features:
# index.html for collapsible sections
- navigation.indexes
# show breadcrumbs
- navigation.path
# use more space for content and less for the toc
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#navigation-integration
- toc.integrate
palette:
# light mode
- media: "(prefers-color-scheme: light)"
scheme: default
# dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
plugins:
# show last updated at bottom
- git-revision-date-localized
# open external links in a new tab
- open-in-new-tab
- search
markdown_extensions:
- admonition
- footnotes
# code block highlighting
- pymdownx.superfences:
custom_fences:
# mermaid code blocks
- name: mermaid
class: mermaid
# disable the toc, since there is not that much content
# https://github.com/squidfunk/mkdocs-material/discussions/2644#discussioncomment-715040
- toc:
permalink: true
toc_depth: 0
# Page tree
nav:
- index.md
- Formats:
- Default Import: formats/default.md
- Anki: formats/anki.md
- Anytype: formats/anytype.md
- Bear: formats/bear.md
- Cacher: formats/cacher.md
- CherryTree: formats/cherrytree.md
- Clipto: formats/clipto.md
- ColorNote: formats/colornote.md
- Day One: formats/day_one.md
- Dynalist: formats/dynalist.md
- Facebook: formats/facebook.md
# fusebase == nimbus note
- FuseBase: formats/nimbus_note.md
# gnote == tomboy-ng
- Gnote: formats/tomboy_ng.md
- Google Docs: formats/google_docs.md
- Google Keep: formats/google_keep.md
- Joplin: formats/joplin.md
- jrnl: formats/jrnl.md
- Nimbus Note: formats/nimbus_note.md
- Notion: formats/notion.md
- Obsidian: formats/obsidian.md
- QOwnNotes: formats/qownnotes.md
- RedNotebook: formats/rednotebook.md
- Simplenote: formats/simplenote.md
- Standard Notes: formats/standard_notes.md
- Synology Note Station: formats/synology_note_station.md
- Textbundle: formats/textbundle.md
- Tiddlywiki: formats/tiddlywiki.md
# TODO
# - Todo.txt: formats/todo.txt.md
# - Todoist: formats/todoist.md
- Tomboy-ng: formats/tomboy_ng.md
# - Toodledo: formats/toodledo.md
- Turtl: formats/turtl.md
# - xit: formats/xit.md
- Zettelkasten: formats/zettelkasten.md
- Zim: formats/zim.md
- Zoho Notebook: formats/zoho_notebook.md
- Import Instructions: import_instructions.md
- Additional features:
- Customizing the Output: additional_features/output_customization.md
- Filters: additional_features/filters.md
- Show the Note Tree: additional_features/show_note_tree.md
- Miscellaneous: additional_features/miscellaneous.md
- Contributing:
- How to Contribute?: contributing/contributing.md
- More Note Apps: contributing/more_note_apps.md
- Development Considerations: contributing/development_considerations.md