Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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

- [[#]]
- [[#]]
- [[#]]
- [[#]]
- [[#]]
- [[#]]
- [[#]]
- [[#]]

##

###

####
```