{"id":18896747,"url":"https://github.com/0xsyr0/obsidian-snippets","last_synced_at":"2026-02-28T14:30:21.917Z","repository":{"id":147024797,"uuid":"590982243","full_name":"0xsyr0/Obsidian-Snippets","owner":"0xsyr0","description":"Obsidian snippets for generating engagements reports","archived":false,"fork":false,"pushed_at":"2024-08-03T10:58:09.000Z","size":55,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-12-31T08:15:31.228Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xsyr0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-19T17:01:06.000Z","updated_at":"2024-10-12T13:27:03.000Z","dependencies_parsed_at":"2024-08-03T12:03:55.066Z","dependency_job_id":null,"html_url":"https://github.com/0xsyr0/Obsidian-Snippets","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xsyr0%2FObsidian-Snippets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xsyr0%2FObsidian-Snippets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xsyr0%2FObsidian-Snippets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xsyr0%2FObsidian-Snippets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xsyr0","download_url":"https://codeload.github.com/0xsyr0/Obsidian-Snippets/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239877005,"owners_count":19711999,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T08:35:18.770Z","updated_at":"2026-02-28T14:30:21.784Z","avatar_url":"https://github.com/0xsyr0.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"left\"\u003e\n  \u003cimg width=\"150\" height=\"150\" src=\"images/obsidian.png\"\u003e\n\u003c/p\u003e\n\n# Obsidian Snippets\n\nA collection of `Obsidian.md` snippets for generating engagement reports.\n\n## Table of Contents\n\n- [Basics](#basics)\n\t- [Tags](#tags)\n\t- [Snippet Folder Path](#snippet-folder-path)\n- [Plugins](#plugins)\n- [Formatting](#formatting)\n\t- [Line Break](#line-break)\n\t- [Multiple Line Breaks](#multiple-line-breaks)\n\t- [Align Text Justified](#align-text-justified)\n\t- [Page Break](#page-break)\n \t- [Center Images](#center-images)\n  \t- [Center Headlines](#center-headlines)\n - [Templates](#templates)\n\n## Basics\n\n### Shortcuts\n\n| Combination | Command |\n| --- | --- |\n| Ctrl+p | Command Prompt Menu |\n\n### Tags\n\n```yaml\n---\ntags:\n  - \u003cTAG\u003e\n  - \u003cTAG\u003e\n  - \u003cTAG\u003e\n---\n```\n\n### Snippet Folder Path\n\nCreate a `.css`file like in the following example.\n\n```c\n.obsidian/snippets/\u003cSNIPPET_NAME\u003e.css\n```\n\nThen enable it in the `Appearance`tab in the settings.\n\n## Plugins\n\n* Admonition\n* Advanced Tables\n* Better Word Count\n* Calendar\n* File Explorer Note count\n* Full Calendar\n* Git\n* Iconize\n* Icons\n* Kanban\n* Paste URL into selection\n* Table of Contents\n\t* Automatic Table of Contents (Alternatively)\n* TagFolder\n* Tag Wrangler\n\n## Formatting\n\n### Line Break\n\n```html\n\u003cbr/\u003e\n```\n\n### Multiple Line Breaks\n\n```html\n\u003cpre\u003e\n\n\n\n\n\u003c/pre\u003e\n```\n\n### Align Text Justified\n\n```css\n/* reading mode */\n.markdown-preview-view p {\n\ttext-align: justify;\n\ttext-justify: inter-word;\t\n}\n\n/* source view and live preview */\n.markdown-source-view.mod-cm6 .cm-line {\n\ttext-align: justify;\n\ttext-justify: inter-word;\t\n}\n```\n\n### Page Break\n\n```html\n\u003cdiv style=\"page-break-after: always; visibility: hidden\"\u003e\n\\pagebreak\n\u003c/div\u003e\n```\n\n### Center Images\n\n```css\nimg[alt*=\"center\"] {\n    display: block;\n    margin-left: auto;\n    margin-right: auto;\n}\n```\n\n```css\n![[image.png | center | 256]]\n```\n\n### Center Headlines\n\n```c\n\u003ccenter\u003e\u003ch1\u003eTEXT\u003c/h1\u003e\u003c/center\u003e\n```\n\n## Templates\n\n```c\n---\nCategory: \"[[\u003cCATEGORY\u003e]]\"\ntags:\n  - \u003cTAG\u003e\n  - \u003cTAG\u003e\n  - \u003cTAG\u003e\n---\n\n![](banner.png)\n\n## Table of Contents\n\n- [[#\u003cHEADING_2\u003e]]\n  - [[#\u003cHEADING_3\u003e]]\n  - [[#\u003cHEADING_3\u003e]]\n  - [[#\u003cHEADING_3\u003e]]\n  - [[#\u003cHEADING_3\u003e]]\n- [[#\u003cHEADING_2\u003e]]\n- [[#\u003cHEADING_2\u003e]]\n- [[#\u003cHEADING_2\u003e]]\n\n## \u003cHEADING_2\u003e\n\n### \u003cHEADING_3\u003e\n\n#### \u003cHEADING_4\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xsyr0%2Fobsidian-snippets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xsyr0%2Fobsidian-snippets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xsyr0%2Fobsidian-snippets/lists"}