Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xsyr0/obsidian-snippets
Obsidian snippets for generating engagements reports
https://github.com/0xsyr0/obsidian-snippets
Last synced: 7 days ago
JSON representation
Obsidian snippets for generating engagements reports
- Host: GitHub
- URL: https://github.com/0xsyr0/obsidian-snippets
- Owner: 0xsyr0
- Created: 2023-01-19T17:01:06.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-03T10:58:09.000Z (3 months ago)
- Last Synced: 2024-08-03T11:58:25.191Z (3 months ago)
- Homepage:
- Size: 53.7 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Obsidian Snippets
A collection of `Obsidian.md` snippets for generating engagement reports.
## Table of Contents
- [Basics](#basics)
- [Tags](#tags)
- [Snippet Folder Path](#snippet-folder-path)
- [Plugins](#plugins)
- [Formatting](#formatting)
- [Line Break](#line-break)
- [Multiple Line Breaks](#multiple-line-breaks)
- [Align Text Justified](#align-text-justified)
- [Page Break](#page-break)
- [Center Images](#center-images)
- [Center Headlines](#center-headlines)
- [Templates](#templates)## Basics
### Shortcuts
| Combination | Command |
| --- | --- |
| Ctrl+p | Command Prompt Menu |### Tags
```yaml
---
tags:
-
-
-
---
```### Snippet Folder Path
Create a `.css`file like in the following example.
```c
.obsidian/snippets/.css
```Then enable it in the `Appearance`tab in the settings.
## Plugins
* Admonition
* Advanced Tables
* Better Word Count
* Calendar
* File Explorer Note count
* Full Calendar
* Git
* Iconize
* Icons
* Kanban
* Paste URL into selection
* Table of Contents
* Automatic Table of Contents (Alternatively)
* TagFolder
* Tag Wrangler## Formatting
### Line Break
```html
```### Multiple Line Breaks
```html
```### Align Text Justified
```css
/* reading mode */
.markdown-preview-view p {
text-align: justify;
text-justify: inter-word;
}/* source view and live preview */
.markdown-source-view.mod-cm6 .cm-line {
text-align: justify;
text-justify: inter-word;
}
```### Page Break
```html
\pagebreak
```### Center Images
```css
img[alt*="center"] {
display: block;
margin-left: auto;
margin-right: auto;
}
``````css
![[image.png | center | 256]]
```### Center Headlines
```c
TEXT
```## Templates
```c
---
Category: "[[]]"
tags:
-
-
-
---![](banner.png)
## Table of Contents
- [[#]]
- [[#]]
- [[#]]
- [[#]]
- [[#]]
- [[#]]
- [[#]]
- [[#]]##
###
####
```