├── .gitignore ├── CHANGELOG.md ├── CSS ├── Colored Folder │ └── F - Color.css ├── Folder Note │ ├── F - note.css │ ├── FN - Global.css │ └── Icon folder │ │ ├── FNI - Global.css │ │ ├── FNI - MOBILE.css │ │ └── FNI - Primary.css ├── IMG - Grid float.css ├── MD - Custom Syntax.css ├── README.md ├── YAML.css └── screenshot │ ├── Custom_syntax.png │ ├── Folder_note.png │ └── nested_colored.png └── plugins ├── Fast-start.js ├── README.md ├── filepath_copy.js └── space-quote.js /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CSS/Colored Folder/F - Color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/Colored Folder/F - Color.css -------------------------------------------------------------------------------- /CSS/Folder Note/F - note.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/Folder Note/F - note.css -------------------------------------------------------------------------------- /CSS/Folder Note/FN - Global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/Folder Note/FN - Global.css -------------------------------------------------------------------------------- /CSS/Folder Note/Icon folder/FNI - Global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/Folder Note/Icon folder/FNI - Global.css -------------------------------------------------------------------------------- /CSS/Folder Note/Icon folder/FNI - MOBILE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/Folder Note/Icon folder/FNI - MOBILE.css -------------------------------------------------------------------------------- /CSS/Folder Note/Icon folder/FNI - Primary.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/Folder Note/Icon folder/FNI - Primary.css -------------------------------------------------------------------------------- /CSS/IMG - Grid float.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/IMG - Grid float.css -------------------------------------------------------------------------------- /CSS/MD - Custom Syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/MD - Custom Syntax.css -------------------------------------------------------------------------------- /CSS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/README.md -------------------------------------------------------------------------------- /CSS/YAML.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/YAML.css -------------------------------------------------------------------------------- /CSS/screenshot/Custom_syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/screenshot/Custom_syntax.png -------------------------------------------------------------------------------- /CSS/screenshot/Folder_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/screenshot/Folder_note.png -------------------------------------------------------------------------------- /CSS/screenshot/nested_colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/CSS/screenshot/nested_colored.png -------------------------------------------------------------------------------- /plugins/Fast-start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/plugins/Fast-start.js -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/filepath_copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/plugins/filepath_copy.js -------------------------------------------------------------------------------- /plugins/space-quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/Obsidian-Snippet-collection/HEAD/plugins/space-quote.js --------------------------------------------------------------------------------