├── .obsidian
├── hotkeys.json
├── app.json
├── appearance.json
├── community-plugins.json
├── plugins
│ ├── drawio-obsidian
│ │ ├── data.json
│ │ ├── manifest.json
│ │ └── styles.css
│ └── obsidian-git
│ │ ├── manifest.json
│ │ ├── data.json
│ │ └── styles.css
├── bookmarks.json
├── core-plugins.json
├── graph.json
├── core-plugins-migration.json
└── workspace.json
├── .gitignore
├── Storage
├── Example.pdf
├── Borzoi Snoz.png
├── Greek Symbols TeX.png
├── Images
│ ├── Borzoi Snoz.png
│ ├── Greek Symbols TeX.png
│ ├── Pasted image 20230515144749.png
│ └── Pasted image 20230515162228.png
├── Version Control.md
├── Math notation refs.md
├── Markdown quick refs.md
└── Diagrams
│ └── Branches_1.svg
├── Table Of Contents.md
└── README.md
/.obsidian/hotkeys.json:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/.obsidian/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "alwaysUpdateLinks": true
3 | }
--------------------------------------------------------------------------------
/.obsidian/appearance.json:
--------------------------------------------------------------------------------
1 | {
2 | "accentColor": ""
3 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .obsidian/workspace.json
3 | .obsidian/workspace.json
4 |
--------------------------------------------------------------------------------
/.obsidian/community-plugins.json:
--------------------------------------------------------------------------------
1 | [
2 | "drawio-obsidian",
3 | "obsidian-git"
4 | ]
--------------------------------------------------------------------------------
/Storage/Example.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bees-Please/Obsidian-Quick-Guide-Vault/HEAD/Storage/Example.pdf
--------------------------------------------------------------------------------
/Storage/Borzoi Snoz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bees-Please/Obsidian-Quick-Guide-Vault/HEAD/Storage/Borzoi Snoz.png
--------------------------------------------------------------------------------
/Storage/Greek Symbols TeX.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bees-Please/Obsidian-Quick-Guide-Vault/HEAD/Storage/Greek Symbols TeX.png
--------------------------------------------------------------------------------
/Storage/Images/Borzoi Snoz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bees-Please/Obsidian-Quick-Guide-Vault/HEAD/Storage/Images/Borzoi Snoz.png
--------------------------------------------------------------------------------
/Storage/Images/Greek Symbols TeX.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bees-Please/Obsidian-Quick-Guide-Vault/HEAD/Storage/Images/Greek Symbols TeX.png
--------------------------------------------------------------------------------
/Storage/Images/Pasted image 20230515144749.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bees-Please/Obsidian-Quick-Guide-Vault/HEAD/Storage/Images/Pasted image 20230515144749.png
--------------------------------------------------------------------------------
/Storage/Images/Pasted image 20230515162228.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bees-Please/Obsidian-Quick-Guide-Vault/HEAD/Storage/Images/Pasted image 20230515162228.png
--------------------------------------------------------------------------------
/.obsidian/plugins/drawio-obsidian/data.json:
--------------------------------------------------------------------------------
1 | {
2 | "welcomeComplete": true,
3 | "theme": {
4 | "dark": null,
5 | "layout": "sketch"
6 | },
7 | "drawing": {
8 | "sketch": true
9 | }
10 | }
--------------------------------------------------------------------------------
/.obsidian/bookmarks.json:
--------------------------------------------------------------------------------
1 | {
2 | "items": [
3 | {
4 | "type": "file",
5 | "ctime": 1684187307071,
6 | "path": "Table Of Contents.md",
7 | "title": "Table of Contents"
8 | }
9 | ]
10 | }
--------------------------------------------------------------------------------
/.obsidian/plugins/obsidian-git/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": "obsidian-git",
3 | "name": "Obsidian Git",
4 | "description": "Backup your vault with Git.",
5 | "isDesktopOnly": false,
6 | "fundingUrl": "https://ko-fi.com/vinzent",
7 | "js": "main.js",
8 | "version": "2.19.1"
9 | }
10 |
--------------------------------------------------------------------------------
/.obsidian/core-plugins.json:
--------------------------------------------------------------------------------
1 | [
2 | "file-explorer",
3 | "global-search",
4 | "switcher",
5 | "graph",
6 | "backlink",
7 | "canvas",
8 | "outgoing-link",
9 | "tag-pane",
10 | "page-preview",
11 | "daily-notes",
12 | "templates",
13 | "note-composer",
14 | "command-palette",
15 | "editor-status",
16 | "starred",
17 | "outline",
18 | "word-count",
19 | "file-recovery"
20 | ]
--------------------------------------------------------------------------------
/.obsidian/plugins/drawio-obsidian/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": "drawio-obsidian",
3 | "name": "Diagrams",
4 | "version": "1.5.0",
5 | "minAppVersion": "0.9.12",
6 | "description": "Draw.io diagrams for Obsidian. This plugin introduces diagrams that can be included within notes or as stand-alone files. Diagrams are created as SVG files (although .drawio extensions are also supported).",
7 | "author": "Sam Greenhalgh",
8 | "authorUrl": "https://www.radicalresearch.co.uk/",
9 | "isDesktopOnly": true
10 | }
11 |
--------------------------------------------------------------------------------
/.obsidian/graph.json:
--------------------------------------------------------------------------------
1 | {
2 | "collapse-filter": true,
3 | "search": "",
4 | "showTags": false,
5 | "showAttachments": false,
6 | "hideUnresolved": false,
7 | "showOrphans": true,
8 | "collapse-color-groups": true,
9 | "colorGroups": [],
10 | "collapse-display": true,
11 | "showArrow": false,
12 | "textFadeMultiplier": 0,
13 | "nodeSizeMultiplier": 1,
14 | "lineSizeMultiplier": 1,
15 | "collapse-forces": true,
16 | "centerStrength": 0.518713248970312,
17 | "repelStrength": 10,
18 | "linkStrength": 1,
19 | "linkDistance": 250,
20 | "scale": 1,
21 | "close": false
22 | }
--------------------------------------------------------------------------------
/.obsidian/plugins/drawio-obsidian/styles.css:
--------------------------------------------------------------------------------
1 | .progress-bar-line {
2 | width: 100%;
3 | left: 0;
4 | }
5 |
6 | .progress-bar-indicator {
7 | width: 90%;
8 | margin: 0 10%;
9 | }
10 |
11 | .diagram-view svg {
12 | max-width: 100%;
13 | max-height: 100%;
14 | display: block;
15 | }
16 |
17 | .diagram-view svg a:link,
18 | .diagram-view svg a:visited {
19 | color: var(--interactive-accent, #00f);
20 | filter: drop-shadow(
21 | 0 0 3px rgba(var(--interactive-accent-rgb, "0, 0, 255"), 0.5)
22 | );
23 | }
24 |
25 | .diagram-view svg a:hover {
26 | color: var(--interactive-accent-hover, #00f);
27 | filter: drop-shadow(0 0 3px var(--interactive-accent-hover, #00f));
28 | }
29 |
--------------------------------------------------------------------------------
/.obsidian/core-plugins-migration.json:
--------------------------------------------------------------------------------
1 | {
2 | "file-explorer": true,
3 | "global-search": true,
4 | "switcher": true,
5 | "graph": true,
6 | "backlink": true,
7 | "canvas": true,
8 | "outgoing-link": true,
9 | "tag-pane": true,
10 | "page-preview": true,
11 | "daily-notes": true,
12 | "templates": true,
13 | "note-composer": true,
14 | "command-palette": true,
15 | "slash-command": false,
16 | "editor-status": true,
17 | "starred": true,
18 | "markdown-importer": false,
19 | "zk-prefixer": false,
20 | "random-note": false,
21 | "outline": true,
22 | "word-count": true,
23 | "slides": false,
24 | "audio-recorder": false,
25 | "workspaces": false,
26 | "file-recovery": true,
27 | "publish": false,
28 | "sync": false
29 | }
--------------------------------------------------------------------------------
/.obsidian/plugins/obsidian-git/data.json:
--------------------------------------------------------------------------------
1 | {
2 | "commitMessage": "vault backup: {{date}}",
3 | "commitDateFormat": "YYYY-MM-DD HH:mm:ss",
4 | "autoSaveInterval": 0,
5 | "autoPushInterval": 0,
6 | "autoPullInterval": 0,
7 | "autoPullOnBoot": false,
8 | "disablePush": false,
9 | "pullBeforePush": true,
10 | "disablePopups": false,
11 | "listChangedFilesInMessageBody": false,
12 | "showStatusBar": true,
13 | "updateSubmodules": false,
14 | "syncMethod": "merge",
15 | "customMessageOnAutoBackup": false,
16 | "autoBackupAfterFileChange": false,
17 | "treeStructure": false,
18 | "refreshSourceControl": true,
19 | "basePath": "",
20 | "differentIntervalCommitAndPush": true,
21 | "changedFilesInStatusBar": false,
22 | "showedMobileNotice": true,
23 | "refreshSourceControlTimer": 7000,
24 | "showBranchStatusBar": true,
25 | "setLastSaveToLastCommit": false,
26 | "submoduleRecurseCheckout": false,
27 | "gitDir": "",
28 | "showFileMenu": true,
29 | "autoCommitMessage": "vault backup: {{date}}"
30 | }
--------------------------------------------------------------------------------
/Table Of Contents.md:
--------------------------------------------------------------------------------
1 | ## [[Markdown quick refs]]
2 | 1) [[Markdown quick refs#Heirarchy terms|Terms]]
3 | 2) [[Markdown quick refs# Text formatting |Text Formatting]]
4 | 3) [[Markdown quick refs# HTML text formatting |HTML Text Formatting]]
5 | 4) [[Markdown quick refs# Internal links (URIs)|Internal Links]]
6 | 5) [[Markdown quick refs# External links (URLs) |External Links]]
7 | 6) [[Markdown quick refs# Embedding content |Embedded Content]]
8 |
9 | ## [[Version Control]]
10 | 1) [[Version Control#Vocab|Vocab]]
11 | 2) [[Version Control#Branches in a [nutshell](https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell) inside of a nutshell:|Branching]]
12 | 3) Merging
13 |
14 | ## [[Math notation refs]]
15 | 1) [[Math notation refs#General notation|General Notation]]
16 | 2) [[Math notation refs#^common-notation|Common Notation]]
17 | 3) [[Math notation refs#^common-characters|Common Characters]]
18 |
19 | ## Other links
20 | [Obsidian documentation](https://help.obsidian.md/How+to/Format+your+notes)
21 | [LaTeX math documentation](https://www.overleaf.com/learn/latex/Mathematical_expressions)
22 | [Mermaid documentation](https://mermaid.js.org/intro/)
23 |
--------------------------------------------------------------------------------
/Storage/Version Control.md:
--------------------------------------------------------------------------------
1 | Materials:
2 | - Git (Installed)
3 | - Github (Installed)
4 | - Github account
5 | - Obsidian
6 |
7 | Author notes:
8 | I would suggest using github desktop for doing git work if you have no git experience, though command line is preferred.
9 |
10 | ---
11 | ## Vocab
12 | - Git is the version control system
13 | - Github is the website that git sends too
14 | - Repo/Repository is where all of the content is storage for remote access
15 | - Snapshot is a commit that is commited change to a local repository already
16 | - Branches are the current working versions of the repository
17 | - HEAD is the pointer for your local repository, pointing to the working branch and tree that you have checked out
18 | - Checkout is the action when changing your head to a branch
19 |
20 | ## Branches in a [nutshell](https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell) inside of a nutshell:
21 | In practice:
22 | - HEAD points to which branch you are currently working on if you have multiple, HEADs are local.
23 | - Branches are attached to the most recent snapshot (version saved to github).
24 | ![[Branches_1.svg]]
25 | - The HEAD branch you are on moves forward when commited, any other branch is left on the last commit it was commited with.
26 | ![[Branches_2.svg]]
27 | - Changing your head again will move the head back to the Test branch, and revert the changes in your working directory to the ones contained on that snapshot.
28 | - Commiting, after moving your HEAD from Main to Test , at this point will cause divergent changes, and split your snapshots into 2 seperate branches which will need to be merged later.
29 | ![[Branches_3.svg]]
30 |
31 | ## Command line (Windows)
32 |
33 | To view documentation
34 |
35 | `git -h`
36 |
37 | or
38 |
39 | `git -h`
40 |
41 | To simply commit with a message:
42 |
43 | `git commit -m "commit message"`
44 |
45 | To pull latest updates:
46 |
47 | `git pull origin/`
--------------------------------------------------------------------------------
/Storage/Math notation refs.md:
--------------------------------------------------------------------------------
1 | ## General notation
2 |
3 | ---
4 |
5 | Using one dollar sign `$` on each side will give you inline math $e^{i*\pi}+1 = 0$
6 |
7 | Using two dollar signs will center the math on its own line
8 | $$e^{i*\pi}+1 = 0$$
9 | TeX math will not work in code blocks, you can call a code block with back-ticks (the ones that appear when you don't press shift and press the grave (~) key)
10 |
11 | Some notations are different and can become compressed when changing between inline and centered such as sum $\sum_{n=1}^{\infty} 2^{-n} = 1$ vs:
12 | $$\sum_{n=1}^{\infty} 2^{-n} = 1$$
13 |
14 | For groupings such as super and subscript you have to use curly braces (These { }) otherwise this happens $e^i*\pi$ (input: `e^i*\pi`), where the desired output is $e^{i*\pi}$ (input: `e^{i*\pi}`)
15 |
16 | Side note: using the backslash as a break works so it appears in TeX equations:
17 | - With break slash: $\{a\}$ (input: `\{a\}`)
18 | - Without: ${a}$ (input: `{a}`)
19 |
20 | Errored math turns red and yellow and break display like this $e^$ for inline, and this for centered: $$e^$$
21 | Command characters/ arguments use the ***backslash*** ( \\ ), forward slash will do nothing
22 | - Wrong: $/frac{1}{2}$ (input: `/frac{1}{2}`)
23 | - Right: $\frac{1}{2}$ (input: `\frac{1}{2}`)
24 |
25 | Common notations:
26 | $x^2 + y^2 = z^2$ as `$x^2 + y^2 = z^2$
27 | $a \cdot b$ as `$a \cdot b$`
28 | $a \times b$ as `$a \times b$`
29 | $\frac{a}{b}$ as `$\frac{a}{b}$`
30 | $x^2$ as `$x^2$`
31 | $x_2$ as `$x_2$`
32 | $a \propto b$ as `$a \propto b$`
33 | $a \equiv b$ as `$a \equiv b$`
34 | $a \approx b$ as `$a \approx b$`
35 | $a \neq b$ as `$a \neq$`
36 | $\pm$ as `$\pm$`
37 | $\bar{x}$ as `$\bar{x}$`
38 | $\bar{ab}$ as `$\bar{ab}$`
39 | $\leq$ as `$\leq$`
40 | $\geq$ as `$\geq$`
41 | $\int_{a}^{b} x^2 \,dx$ as `$\int_{a}^{b} x^2 \,dx$`
42 | $\lim_{x\to\infty} f(x)$ as `$\lim_{x\to\infty} f(x)$`
43 | $\{a \dots a_n \}$ as `$\{a \dots a_n \}$`
44 | $a \implies b$ as `$a \implies b`
45 | ^common-notation
46 |
47 | Common characters:
48 | ![[Greek Symbols TeX.png]]
49 | Note uppercase Greek letters use an uppercase character
50 | ^common-characters
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | >*"All you accomplish will inspire. And in that inspiration you will find strength"*
2 | > The speaker, Destiny 2
3 |
4 | Made by BeesPlease
5 | `Bees, Please!#7777`
6 | `Bees.please.content@gmail.com`
7 |
8 | Feel free to use parts or the whole of this repository as your own.
9 | If you do intend to use it, credit is always appreciated.
10 |
11 | If you would like to suggest any changes to the repo, or make contributions, please open an issue on the github and I'll adress is when I can, thanks!
12 |
13 | ---
14 |
15 | Please have the following:
16 | - Git (Installed)
17 | - Github desktop (Installed)
18 | - Github account
19 | - Obsidian
20 | - A valid internet connection
21 | - Some form of hope that everything will work right the first time
22 | - Imagination
23 |
24 | ---
25 |
26 | For those who do not know how to pull a repo in github:
27 |
28 | 1) In file explorer, find somewhere to make a new folder to perform your wizardry in (I'm doing it on my desktop)
29 | 2) Name the file something unique, open it, and copy the file path from the explorer adress bar
30 | 4) If you are on windows, press Win + R (If you are on Mac goodluck, if you are on Linux/Debian you do not need my help.) to bring up the run window
31 |
32 | (These images will not appear on github)
33 | ![[Pasted image 20230515144749.png]]
34 |
35 | 5) press enter to open up command prompt.
36 | 6) type `cd `, in my case the command would look like this:
37 |
38 | ![[Pasted image 20230515162228.png]]
39 | 8) Press enter, this will change your working directory into the file you created.
40 | 9) Type `git init` to initialize a blank repo
41 | 10) Type `git pull https://github.com/Bees-Please/Obsidian-Quick-Guide-Vault` to pull this parent repo into the folder.
42 | *I'de like to note if you or the person you are pulling from is using their own repo with this guide, this instruction could be innacurate, please double check with whoever is providing this that this is infact the correct URL, I am not responsible for any damages you could incur downloading random peoples repositories.*
43 |
44 | 11) Go ahead and open the vault in obsidian, happy note taking!
45 |
46 |
--------------------------------------------------------------------------------
/.obsidian/workspace.json:
--------------------------------------------------------------------------------
1 | {
2 | "main": {
3 | "id": "60b4a3e162b73145",
4 | "type": "split",
5 | "children": [
6 | {
7 | "id": "2ad9ad3f9fe33249",
8 | "type": "tabs",
9 | "children": [
10 | {
11 | "id": "851c93a4e0cecbdb",
12 | "type": "leaf",
13 | "state": {
14 | "type": "markdown",
15 | "state": {
16 | "file": "Table Of Contents.md",
17 | "mode": "source",
18 | "source": false
19 | }
20 | }
21 | }
22 | ]
23 | }
24 | ],
25 | "direction": "vertical"
26 | },
27 | "left": {
28 | "id": "42fae0f223a1a982",
29 | "type": "split",
30 | "children": [
31 | {
32 | "id": "6a4923bfe52b681f",
33 | "type": "tabs",
34 | "children": [
35 | {
36 | "id": "793ed88a82941521",
37 | "type": "leaf",
38 | "state": {
39 | "type": "search",
40 | "state": {
41 | "query": "",
42 | "matchingCase": false,
43 | "explainSearch": false,
44 | "collapseAll": false,
45 | "extraContext": false,
46 | "sortOrder": "alphabetical"
47 | }
48 | }
49 | },
50 | {
51 | "id": "685db3eb3d2964d8",
52 | "type": "leaf",
53 | "state": {
54 | "type": "bookmarks",
55 | "state": {}
56 | }
57 | },
58 | {
59 | "id": "2c31dae86aa52a74",
60 | "type": "leaf",
61 | "state": {
62 | "type": "file-explorer",
63 | "state": {
64 | "sortOrder": "alphabetical"
65 | }
66 | }
67 | }
68 | ],
69 | "currentTab": 2
70 | }
71 | ],
72 | "direction": "horizontal",
73 | "width": 200
74 | },
75 | "right": {
76 | "id": "268517d1371935ca",
77 | "type": "split",
78 | "children": [
79 | {
80 | "id": "26950cb10c97acfb",
81 | "type": "tabs",
82 | "children": [
83 | {
84 | "id": "a0255179c4fa4455",
85 | "type": "leaf",
86 | "state": {
87 | "type": "backlink",
88 | "state": {
89 | "file": "Table Of Contents.md",
90 | "collapseAll": false,
91 | "extraContext": false,
92 | "sortOrder": "alphabetical",
93 | "showSearch": false,
94 | "searchQuery": "",
95 | "backlinkCollapsed": false,
96 | "unlinkedCollapsed": true
97 | }
98 | }
99 | },
100 | {
101 | "id": "10f5f65de6fe6a88",
102 | "type": "leaf",
103 | "state": {
104 | "type": "outgoing-link",
105 | "state": {
106 | "file": "Table Of Contents.md",
107 | "linksCollapsed": false,
108 | "unlinkedCollapsed": true
109 | }
110 | }
111 | },
112 | {
113 | "id": "59d89fdc7a893091",
114 | "type": "leaf",
115 | "state": {
116 | "type": "tag",
117 | "state": {
118 | "sortOrder": "frequency",
119 | "useHierarchy": true
120 | }
121 | }
122 | },
123 | {
124 | "id": "769d33cab4788c95",
125 | "type": "leaf",
126 | "state": {
127 | "type": "outline",
128 | "state": {
129 | "file": "Table Of Contents.md"
130 | }
131 | }
132 | }
133 | ]
134 | }
135 | ],
136 | "direction": "horizontal",
137 | "width": 300,
138 | "collapsed": true
139 | },
140 | "left-ribbon": {
141 | "hiddenItems": {
142 | "switcher:Open quick switcher": false,
143 | "graph:Open graph view": false,
144 | "canvas:Create new canvas": false,
145 | "daily-notes:Open today's daily note": false,
146 | "templates:Insert template": false,
147 | "command-palette:Open command palette": false
148 | }
149 | },
150 | "active": "851c93a4e0cecbdb",
151 | "lastOpenFiles": [
152 | "Storage/Version Control.md",
153 | "Storage/Images/Pasted image 20230515162228.png",
154 | "Storage/Images/Pasted image 20230515144749.png",
155 | "Storage/Images/Greek Symbols TeX.png",
156 | "Storage/Images/Borzoi Snoz.png",
157 | "Storage/Images",
158 | "Storage/Example.pdf",
159 | "Storage/Diagrams/Branches_3.svg",
160 | "Storage/Diagrams/Branches_2.svg",
161 | "Storage/Diagrams/Branches_1.svg",
162 | "Storage/Diagrams",
163 | "README.md",
164 | "Storage/Greek Symbols TeX.png",
165 | "Storage/Borzoi Snoz.png",
166 | "Table Of Contents.md",
167 | "Storage/Markdown quick refs.md",
168 | "Storage/Math notation refs.md",
169 | "Storage/Untitled.md",
170 | "Initial commit test.md",
171 | "Untitled Diagram.svg.md",
172 | "Storage/Untitled Diagram.svg.md",
173 | "Storage"
174 | ]
175 | }
--------------------------------------------------------------------------------
/Storage/Markdown quick refs.md:
--------------------------------------------------------------------------------
1 | ### Heirarchy terms
2 | Vault: The space where all notes, files, images, workspace, etc are stored. I have sent you a zipped vault, the vault folder is named `Quick Guide Vault`
3 | Note: you are currently in a note, it's where the magic happens.
4 | File: File
5 | Workspace: the workspace is the word that denotes all of the settings, plugins, schemes you have setup. Workspaces will be different across vaults, you can export workspaces in the settings to transfer them to different vaults. Some plugins will affect notes/ files/ content so be warned.
6 |
7 | Heirarchy looks a little something like this:
8 | ```mermaid
9 | flowchart LR
10 | Vault_File --> Vault
11 | Vault --> File
12 | Vault --> Workspace
13 | Vault --> Note
14 | File --> Note_2
15 | File --> File_2
16 | File_2 --> ...
17 | File --> image
18 | ```
19 |
20 | You can make flowcharts and other [diagrams](https://help.obsidian.md/How+to/Format+your+notes#Diagram like this using [Mermaid](https://mermaid.js.org/intro/) using [mermaid](https://mermaid.js.org/intro/) inside of codeblocks, super neat stuff.
21 |
22 | Play around with settings until you find whats comfortable, you can't break too much. When in doubt check the [Documentation](https://help.obsidian.md/How+to/Format+your+notes) or ask questions.
23 |
24 | ## Text formatting
25 |
26 | Horizontal rule:
27 |
28 | ---
29 | Horizontal rules will force the line above it (line 11 in this case) to become a header and break display on itself, example:
30 |
31 | Horizontal rule
32 | ---
33 |
34 | *ital*
35 | _also ital_
36 | **bold**
37 | ***bold ital***
38 | ~~strike~~
39 |
40 | as always use backslash to escape formatting, otherwise
41 | - using a hyphen on the start of a line does this
42 | \- and not this
43 |
44 | ==Highlight==
45 | > quotes, require a page break after to break formatting
46 | > otherwise they do this
47 |
48 | note, quotes, highlights, checklists, and other special text interactions will follow your color scheme :)
49 |
50 | Math can be done using $ characters, Obsidian uses MathJax, which uses LaTeX so for your own sanity just search "latex math symbols" or something if you are looking for something not in the quick reference for maths.
51 |
52 | quick example: $$e^{i*\pi}+1 = 0$$
53 | Otherwise see [[Math notation refs]]
54 |
55 | - bullet
56 | 1) number
57 | - [ ] checklist
58 | - [x] checklist
59 |
60 | Table | A | B
61 | ---- | ----| ----
62 | C | D | E
63 |
64 | \*In tables, the top row cells will always be bolded for readability
65 |
66 | Indent (hotkey: Ctrl + ])
67 |
68 | `inline code block`
69 |
70 | ```
71 | Code block
72 | ```
73 |
74 | ```java
75 | Specific language block (change java to whatever language you desire)
76 | ```
77 |
78 | ## HTML text formatting
79 | (pls learn HTML, it's very nice)
80 |
81 | ---
82 | centered with HTML tags
83 | colored text, uses hex colors :D
84 | underline text
85 |
86 | ## Internal links (URIs)
87 |
88 | ---
89 | ^dummy-link
90 |
91 | Internal links can be made quickly by using the `[[wikilink]]` format.
92 | Links to this document wont do anything as you are in the document already, but block links, header links, and links with other parameters will pull you to that anchor on the page, useful later.
93 |
94 | Inline: [[Markdown quick refs]]
95 |
96 | Link with no text:
97 | [[Markdown quick refs]]
98 | Links to a whole page
99 |
100 | Link with text:
101 | [[Markdown quick refs|Im a link!]]
102 | This also links to a whole page, but has specific text.
103 |
104 | Link to specific block:
105 | [[Markdown quick refs#^dummy-link]]
106 | To link to a block assign a block ID using a karat, block ID's can contain 0-1, a-z, and dashes, block links will highlight the linked block, a block is all lines of text that contain characters and are touching.
107 |
108 | Link to a header:
109 | [[Markdown quick refs# Internal links]]
110 | If you want to link to multiple lines that are separated, link to their header, as header links will highlight all text up until the next header.
111 |
112 | Link to a header with text:
113 | [[Markdown quick refs# Internal links|Beam me up]]
114 |
115 | Pasting in an image will give it a random name and put it physically into your obsidian file directory as a .png file, this can go into a storage file in obsidian for cleaner file organization.
116 |
117 | Internal images can be displayed by linking to them normally, then putting and exclamation in front of them which looks like this:
118 | `![[Pasted image 20230113143037.png]]`
119 |
120 | and acts like this:
121 | ![[Borzoi Snoz.png]]
122 |
123 | You can also change the size of images, it will scale according to the aspect ratio:
124 | ![[Borzoi Snoz.png|100]]
125 |
126 | ## External links (URLs)
127 |
128 | ---
129 |
130 | URL/ URI general rule, linking to something that has spaces, replace the space with `%20`
131 | so `Markdown Quick Refs` becomes `Markdown%20Quick%20Refs` when using URL/URI format to link to them. This is important later when linking to external documents. You can also enclose a target with <>, but it's not necessary. It's a powerful tool that lets you dynamically link around to different places in obsidian without having to go and do some magic bull-shittery.
132 |
133 | URI's are a little weird so I'll just link to their documentation:
134 | https://help.obsidian.md/Advanced+topics/Using+obsidian+URI
135 |
136 | URI style link:
137 | (This link just links to this page, it wont do anything, but it's an important concept for later)
138 | [Markdown quick refs](Markdown%20quick%20refs.md)
139 |
140 | Links are usually automatic and can just be pasted:
141 | https://help.obsidian.md/How+to/Format+your+notes
142 |
143 | And can be obscured like so:
144 | [Format your notes](https://help.obsidian.md/How+to/Format+your+notes)
145 |
146 | Inline links work [fine too](https://help.obsidian.md/How+to/Format+your+notes)
147 |
148 | ## Embedding content
149 |
150 | ---
151 |
152 | ==important==: Dragging and dropping something into this window will bring it into obsidian, dragging and dropping, images, sound files, videos, other embedable files will cause it to appear in the side bar, which then it can be linked too/ embedded.
153 |
154 | Obsidian comes with an audio recorder (off by default)
155 | `Settings > Core plugins > Audio Recorder` and will save the audio into the obsidian vault for later referencing.
156 |
157 | Accepted file types for embedding:
158 | 1. Markdown files: `md`
159 | 2. Image files: `png`, `jpg`, `jpeg`, `gif`, `bmp`, `svg`
160 | 3. Audio files: `mp3`, `webm`, `wav`, `m4a`, `ogg`, `3gp`, `flac`
161 | 4. Video files: `mp4`, `webm`, `ogv`, `mov`, `mkv`
162 | 5. PDF files: `pdf`
163 |
164 | Embedded PDF:
165 |
166 | ![[Example.pdf]]
167 |
168 | ## Embedding a webpage/ youtube:
169 |
170 | Embedding webpages requires iframes from HTML, but you can basically use the following as a template.
171 |
172 | Youtube makes it much easier as they have an embed code generator on all of their videos, clicking the share button, then embed option gives you the HTML to paste automagically and it works every time! (some videos are not allowed to play embedded, and will say `watch on youtube` or something like that)
173 |
174 |
175 |
176 | For other webpages, it's the same idea:
177 |
178 |
179 |
--------------------------------------------------------------------------------
/.obsidian/plugins/obsidian-git/styles.css:
--------------------------------------------------------------------------------
1 | @keyframes loading {
2 | 0% {
3 | transform: rotate(0deg);
4 | }
5 |
6 | 100% {
7 | transform: rotate(360deg);
8 | }
9 | }
10 |
11 | .workspace-leaf-content[data-type='git-view'] .view-content {
12 | padding: 0;
13 | }
14 |
15 | .workspace-leaf-content[data-type='git-history-view'] .view-content {
16 | padding: 0;
17 | }
18 |
19 | .loading>svg {
20 | animation: 2s linear infinite loading;
21 | transform-origin: 50% 50%;
22 | display: inline-block;
23 | }
24 |
25 | .obsidian-git-center {
26 | margin: auto;
27 | text-align: center;
28 | width: 50%;
29 | }
30 |
31 | .obsidian-git-textarea {
32 | display: block;
33 | margin-left: auto;
34 | margin-right: auto;
35 | }
36 |
37 | .obsidian-git-center-button {
38 | display: block;
39 | margin: 20px auto;
40 | }
41 |
42 | .tooltip.mod-left {
43 | overflow-wrap: break-word;
44 | }
45 |
46 | .tooltip.mod-right {
47 | overflow-wrap: break-word;
48 | }
49 | .git-tools {
50 | display: flex;
51 | margin-left: auto;
52 | }
53 | .git-tools .type {
54 | padding-left: var(--size-2-1);
55 | display: flex;
56 | align-items: center;
57 | justify-content: center;
58 | width: 11px;
59 | }
60 |
61 | .git-tools .type[data-type="M"] {
62 | color: orange;
63 | }
64 | .git-tools .type[data-type="D"] {
65 | color: red;
66 | }
67 | .git-tools .buttons {
68 | display: flex;
69 | }
70 | .git-tools .buttons > * {
71 | padding: 0 0;
72 | height: auto;
73 | }
74 |
75 | .workspace-leaf-content[data-type="diff-view"] .d2h-d-none {
76 | display: none;
77 | }
78 |
79 | .workspace-leaf-content[data-type="diff-view"] .d2h-wrapper {
80 | text-align: left;
81 | }
82 |
83 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-header {
84 | background-color: var(--background-primary);
85 | border-bottom: 1px solid var(--interactive-accent);
86 | font-family: var(--font-monospace);
87 | height: 35px;
88 | padding: 5px 10px;
89 | }
90 |
91 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-header,
92 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
93 | display: -webkit-box;
94 | display: -ms-flexbox;
95 | display: flex;
96 | }
97 |
98 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
99 | font-size: 14px;
100 | margin-left: auto;
101 | }
102 |
103 | .workspace-leaf-content[data-type="diff-view"] .d2h-lines-added {
104 | border: 1px solid #b4e2b4;
105 | border-radius: 5px 0 0 5px;
106 | color: #399839;
107 | padding: 2px;
108 | text-align: right;
109 | vertical-align: middle;
110 | }
111 |
112 | .workspace-leaf-content[data-type="diff-view"] .d2h-lines-deleted {
113 | border: 1px solid #e9aeae;
114 | border-radius: 0 5px 5px 0;
115 | color: #c33;
116 | margin-left: 1px;
117 | padding: 2px;
118 | text-align: left;
119 | vertical-align: middle;
120 | }
121 |
122 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-name-wrapper {
123 | -webkit-box-align: center;
124 | -ms-flex-align: center;
125 | align-items: center;
126 | display: -webkit-box;
127 | display: -ms-flexbox;
128 | display: flex;
129 | font-size: 15px;
130 | width: 100%;
131 | }
132 |
133 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-name {
134 | overflow-x: hidden;
135 | text-overflow: ellipsis;
136 | white-space: nowrap;
137 | }
138 |
139 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-wrapper {
140 | border: 1px solid var(--background-modifier-border);
141 | border-radius: 3px;
142 | margin-bottom: 1em;
143 | }
144 |
145 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse {
146 | -webkit-box-pack: end;
147 | -ms-flex-pack: end;
148 | -webkit-box-align: center;
149 | -ms-flex-align: center;
150 | align-items: center;
151 | border: 1px solid var(--background-modifier-border);
152 | border-radius: 3px;
153 | cursor: pointer;
154 | display: none;
155 | font-size: 12px;
156 | justify-content: flex-end;
157 | padding: 4px 8px;
158 | }
159 |
160 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse.d2h-selected {
161 | background-color: #c8e1ff;
162 | }
163 |
164 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse-input {
165 | margin: 0 4px 0 0;
166 | }
167 |
168 | .workspace-leaf-content[data-type="diff-view"] .d2h-diff-table {
169 | border-collapse: collapse;
170 | font-family: Menlo, Consolas, monospace;
171 | font-size: 13px;
172 | width: 100%;
173 | }
174 |
175 | .workspace-leaf-content[data-type="diff-view"] .d2h-files-diff {
176 | width: 100%;
177 | }
178 |
179 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff {
180 | overflow-y: hidden;
181 | }
182 |
183 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-side-diff {
184 | display: inline-block;
185 | margin-bottom: -8px;
186 | margin-right: -4px;
187 | overflow-x: scroll;
188 | overflow-y: hidden;
189 | width: 50%;
190 | }
191 |
192 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line {
193 | padding: 0 8em;
194 | }
195 |
196 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line,
197 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
198 | display: inline-block;
199 | -webkit-user-select: none;
200 | -moz-user-select: none;
201 | -ms-user-select: none;
202 | user-select: none;
203 | white-space: nowrap;
204 | width: 100%;
205 | }
206 |
207 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
208 | padding: 0 4.5em;
209 | }
210 |
211 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line-ctn {
212 | word-wrap: normal;
213 | background: none;
214 | display: inline-block;
215 | padding: 0;
216 | -webkit-user-select: text;
217 | -moz-user-select: text;
218 | -ms-user-select: text;
219 | user-select: text;
220 | vertical-align: middle;
221 | white-space: pre;
222 | width: 100%;
223 | }
224 |
225 | .theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
226 | .theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del {
227 | background-color: #ffb6ba;
228 | }
229 |
230 | .theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
231 | .theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del {
232 | background-color: #8d232881;
233 | }
234 |
235 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
236 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
237 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del,
238 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
239 | border-radius: 0.2em;
240 | display: inline-block;
241 | margin-top: -1px;
242 | text-decoration: none;
243 | vertical-align: middle;
244 | }
245 |
246 | .theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
247 | .theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
248 | background-color: #97f295;
249 | text-align: left;
250 | }
251 |
252 | .theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
253 | .theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
254 | background-color: #1d921996;
255 | text-align: left;
256 | }
257 |
258 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix {
259 | word-wrap: normal;
260 | background: none;
261 | display: inline;
262 | padding: 0;
263 | white-space: pre;
264 | }
265 |
266 | .workspace-leaf-content[data-type="diff-view"] .line-num1 {
267 | float: left;
268 | }
269 |
270 | .workspace-leaf-content[data-type="diff-view"] .line-num1,
271 | .workspace-leaf-content[data-type="diff-view"] .line-num2 {
272 | -webkit-box-sizing: border-box;
273 | box-sizing: border-box;
274 | overflow: hidden;
275 | padding: 0 0.5em;
276 | text-overflow: ellipsis;
277 | width: 3.5em;
278 | }
279 |
280 | .workspace-leaf-content[data-type="diff-view"] .line-num2 {
281 | float: right;
282 | }
283 |
284 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber {
285 | background-color: var(--background-primary);
286 | border: solid var(--background-modifier-border);
287 | border-width: 0 1px;
288 | -webkit-box-sizing: border-box;
289 | box-sizing: border-box;
290 | color: var(--text-muted);
291 | cursor: pointer;
292 | display: inline-block;
293 | position: absolute;
294 | text-align: right;
295 | width: 7.5em;
296 | }
297 |
298 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber:after {
299 | content: "\200b";
300 | }
301 |
302 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
303 | background-color: var(--background-primary);
304 | border: solid var(--background-modifier-border);
305 | border-width: 0 1px;
306 | -webkit-box-sizing: border-box;
307 | box-sizing: border-box;
308 | color: var(--text-muted);
309 | cursor: pointer;
310 | display: inline-block;
311 | overflow: hidden;
312 | padding: 0 0.5em;
313 | position: absolute;
314 | text-align: right;
315 | text-overflow: ellipsis;
316 | width: 4em;
317 | }
318 |
319 | .workspace-leaf-content[data-type="diff-view"] .d2h-diff-tbody tr {
320 | position: relative;
321 | }
322 |
323 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber:after {
324 | content: "\200b";
325 | }
326 |
327 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-emptyplaceholder,
328 | .workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
329 | background-color: var(--background-primary);
330 | border-color: var(--background-modifier-border);
331 | }
332 |
333 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix,
334 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
335 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber,
336 | .workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
337 | -webkit-user-select: none;
338 | -moz-user-select: none;
339 | -ms-user-select: none;
340 | user-select: none;
341 | }
342 |
343 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
344 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
345 | direction: rtl;
346 | }
347 |
348 | .theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-del {
349 | background-color: #fee8e9;
350 | border-color: #e9aeae;
351 | }
352 |
353 | .theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
354 | background-color: #dfd;
355 | border-color: #b4e2b4;
356 | }
357 |
358 | .theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-del {
359 | background-color: #521b1d83;
360 | border-color: #691d1d73;
361 | }
362 |
363 | .theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
364 | background-color: rgba(30, 71, 30, 0.5);
365 | border-color: #13501381;
366 | }
367 |
368 | .workspace-leaf-content[data-type="diff-view"] .d2h-info {
369 | background-color: var(--background-primary);
370 | border-color: var(--background-modifier-border);
371 | color: var(--text-normal);
372 | }
373 |
374 | .theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff .d2h-del.d2h-change {
375 | background-color: #fdf2d0;
376 | }
377 |
378 | .theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff .d2h-del.d2h-change {
379 | background-color: #55492480;
380 | }
381 |
382 | .theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff .d2h-ins.d2h-change {
383 | background-color: #ded;
384 | }
385 |
386 | .theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff .d2h-ins.d2h-change {
387 | background-color: rgba(37, 78, 37, 0.418);
388 | }
389 |
390 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper {
391 | margin-bottom: 10px;
392 | }
393 |
394 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a {
395 | color: #3572b0;
396 | text-decoration: none;
397 | }
398 |
399 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a:visited {
400 | color: #3572b0;
401 | }
402 |
403 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list-header {
404 | text-align: left;
405 | }
406 |
407 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list-title {
408 | font-weight: 700;
409 | }
410 |
411 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list-line {
412 | display: -webkit-box;
413 | display: -ms-flexbox;
414 | display: flex;
415 | text-align: left;
416 | }
417 |
418 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list {
419 | display: block;
420 | list-style: none;
421 | margin: 0;
422 | padding: 0;
423 | }
424 |
425 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list>li {
426 | border-bottom: 1px solid var(--background-modifier-border);
427 | margin: 0;
428 | padding: 5px 10px;
429 | }
430 |
431 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list>li:last-child {
432 | border-bottom: none;
433 | }
434 |
435 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-switch {
436 | cursor: pointer;
437 | display: none;
438 | font-size: 10px;
439 | }
440 |
441 | .workspace-leaf-content[data-type="diff-view"] .d2h-icon {
442 | fill: currentColor;
443 | margin-right: 10px;
444 | vertical-align: middle;
445 | }
446 |
447 | .workspace-leaf-content[data-type="diff-view"] .d2h-deleted {
448 | color: #c33;
449 | }
450 |
451 | .workspace-leaf-content[data-type="diff-view"] .d2h-added {
452 | color: #399839;
453 | }
454 |
455 | .workspace-leaf-content[data-type="diff-view"] .d2h-changed {
456 | color: #d0b44c;
457 | }
458 |
459 | .workspace-leaf-content[data-type="diff-view"] .d2h-moved {
460 | color: #3572b0;
461 | }
462 |
463 | .workspace-leaf-content[data-type="diff-view"] .d2h-tag {
464 | background-color: var(--background-primary);
465 | display: -webkit-box;
466 | display: -ms-flexbox;
467 | display: flex;
468 | font-size: 10px;
469 | margin-left: 5px;
470 | padding: 0 2px;
471 | }
472 |
473 | .workspace-leaf-content[data-type="diff-view"] .d2h-deleted-tag {
474 | border: 2px solid #c33;
475 | }
476 |
477 | .workspace-leaf-content[data-type="diff-view"] .d2h-added-tag {
478 | border: 1px solid #399839;
479 | }
480 |
481 | .workspace-leaf-content[data-type="diff-view"] .d2h-changed-tag {
482 | border: 1px solid #d0b44c;
483 | }
484 |
485 | .workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
486 | border: 1px solid #3572b0;
487 | }
--------------------------------------------------------------------------------
/Storage/Diagrams/Branches_1.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------