fasd
This commit is contained in:
= 2022-12-06 01:42:47 -05:00
parent 56f6c5398f
commit 9dc012a1dc
8 changed files with 179 additions and 10 deletions

3
.obsidian/community-plugins.json vendored Normal file
View File

@ -0,0 +1,3 @@
[
"wikilinks-to-mdlinks-obsidian"
]

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,10 @@
{
"id": "wikilinks-to-mdlinks-obsidian",
"name": "Wikilinks to MDLinks",
"version": "0.0.12",
"minAppVersion": "0.9.12",
"description": "A plugin that converts wikilinks to markdown links and vice versa",
"author": "Agatha Uy",
"authorUrl": "https://github.com/agathauy",
"isDesktopOnly": false
}

View File

@ -27,7 +27,7 @@
"state": { "state": {
"file": "README.md", "file": "README.md",
"mode": "source", "mode": "source",
"source": false "source": true
} }
} }
} }
@ -149,8 +149,10 @@
"width": 300, "width": 300,
"collapsed": true "collapsed": true
}, },
"active": "d5588582587567b9", "active": "41f646123a82fd4c",
"lastOpenFiles": [ "lastOpenFiles": [
"CODE_OF_CONDUCT.md",
"README.md",
"content/_index.md", "content/_index.md",
"content/page2.md", "content/page2.md",
"content/page1.md" "content/page1.md"

View File

@ -1,7 +1,7 @@
# Quartz # Quartz
# page1: [[page1]] # page1: [page1](page1.md)
# page2: [[page2]] # page2: [page2](page2.md)
Host your second brain and [digital garden](https://jzhao.xyz/posts/networked-thought) for free. Quartz features Host your second brain and [digital garden](https://jzhao.xyz/posts/networked-thought) for free. Quartz features

View File

@ -3,9 +3,9 @@ title: _index
enableToc: false enableToc: false
--- ---
## page 1[[page1]] ## page 1[page1](page1.md)
## page 2[[page2]] ## page 2[page2](page2.md)

View File

@ -3,5 +3,5 @@ title: page1
enableToc: false enableToc: false
--- ---
## home [[_index]] ## home [_index](_index.md)
## page 2[[page2]] ## page 2[page2](page2.md)

View File

@ -3,5 +3,5 @@ title: page2
enableToc: false enableToc: false
--- ---
## home [[_index]] ## home [_index](_index.md)
## page 1[[page1]] ## page 1[page1](page1.md)