Skip to content

Commit 44feefd

Browse files
committed
Make callouts inline, add templates
1 parent 847c94b commit 44feefd

File tree

29 files changed

+419
-2327
lines changed

29 files changed

+419
-2327
lines changed

.vscode/shortcodes.code-snippets

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,8 @@
2929
},
3030
"callout": {
3131
"scope": "markdown,jinja-md",
32-
"prefix": ["call","callout","tip","info","warning","danger"],
33-
"body": ["{% callout(type=\"${1|info,tip,warning,danger|}\") %}",
34-
"$2",
35-
"{% end %}"],
32+
"prefix": ["callout","tip","info","warning","danger"],
33+
"body": ["{%${1|tip,info,warning,danger|}()%}$2{%end%}"],
3634
"description": "Callout"
3735
}
3836

config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ taxonomies = [
1414
{name = "tags", rss = false},
1515
]
1616

17-
ignored_content = ["**/.obsidian/**"] # ignore the .obsidian folder for publishing
17+
ignored_content = ["**/.obsidian/**", "**/_templates/**"] # ignore the .obsidian and __templates folder for publishing
1818

1919
[search]
2020
include_date = true
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
2-
"cssTheme": "Minimal",
2+
"cssTheme": "",
33
"interfaceFontFamily": "",
44
"textFontFamily": "Atkinson Hyperlegible Next",
55
"monospaceFontFamily": "Atkinson Hyperlegible Mono",
6-
"baseFontSize": 18
6+
"baseFontSize": 20,
7+
"accentColor": "#167bc2",
8+
"enabledCssSnippets": [
9+
"custom"
10+
]
711
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[
22
"languagetool",
3-
"obsidian-minimal-settings",
4-
"zola-shortcodes"
3+
"zola-shortcodes",
4+
"templater-obsidian"
55
]

content/posts/.obsidian/core-plugins.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
"file-explorer": true,
33
"global-search": true,
44
"switcher": true,
5-
"graph": true,
6-
"backlink": true,
7-
"canvas": true,
8-
"outgoing-link": true,
9-
"tag-pane": true,
5+
"graph": false,
6+
"backlink": false,
7+
"canvas": false,
8+
"outgoing-link": false,
9+
"tag-pane": false,
1010
"properties": false,
11-
"page-preview": true,
12-
"daily-notes": true,
13-
"templates": true,
14-
"note-composer": true,
11+
"page-preview": false,
12+
"daily-notes": false,
13+
"templates": false,
14+
"note-composer": false,
1515
"command-palette": true,
16-
"slash-command": false,
16+
"slash-command": true,
1717
"editor-status": true,
18-
"bookmarks": true,
18+
"bookmarks": false,
1919
"markdown-importer": false,
2020
"zk-prefixer": false,
2121
"random-note": false,
@@ -26,6 +26,6 @@
2626
"workspaces": false,
2727
"file-recovery": true,
2828
"publish": false,
29-
"sync": true,
29+
"sync": false,
3030
"webviewer": false
3131
}

content/posts/.obsidian/plugins/obsidian-minimal-settings/data.json

Lines changed: 0 additions & 34 deletions
This file was deleted.

content/posts/.obsidian/plugins/obsidian-minimal-settings/main.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

content/posts/.obsidian/plugins/obsidian-minimal-settings/manifest.json

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"command_timeout": 5,
3+
"templates_folder": "_templates",
4+
"templates_pairs": [
5+
[
6+
"",
7+
""
8+
]
9+
],
10+
"trigger_on_file_creation": false,
11+
"auto_jump_to_cursor": true,
12+
"enable_system_commands": false,
13+
"shell_path": "",
14+
"user_scripts_folder": "",
15+
"enable_folder_templates": true,
16+
"folder_templates": [
17+
{
18+
"folder": "",
19+
"template": ""
20+
}
21+
],
22+
"enable_file_templates": false,
23+
"file_templates": [
24+
{
25+
"regex": ".*",
26+
"template": ""
27+
}
28+
],
29+
"syntax_highlighting": true,
30+
"syntax_highlighting_mobile": false,
31+
"enabled_templates_hotkeys": [
32+
""
33+
],
34+
"startup_templates": [
35+
""
36+
],
37+
"intellisense_render": 1
38+
}

content/posts/.obsidian/plugins/templater-obsidian/main.js

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)