1
0
Fork 0

Correct TIL dates

This commit is contained in:
Ava Gaiety W 2023-09-20 17:59:59 -05:00
parent 7f96d3d4e7
commit 5886f90029
4 changed files with 12 additions and 13 deletions

View file

@ -3,6 +3,6 @@
"aliases": "aliases",
"cssclasses": "multitext",
"tags": "tags",
"date": "text"
"date": "date"
}
}

View file

@ -13,7 +13,7 @@
"state": {
"type": "markdown",
"state": {
"file": "tils/pdf_obsidian_at_page.md",
"file": "tils/struct_pattern_matching.md",
"mode": "source",
"source": false
}
@ -48,7 +48,7 @@
"state": {
"type": "search",
"state": {
"query": "images",
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
@ -65,8 +65,7 @@
"state": {}
}
}
],
"currentTab": 1
]
}
],
"direction": "horizontal",
@ -86,7 +85,7 @@
"state": {
"type": "backlink",
"state": {
"file": "tils/pdf_obsidian_at_page.md",
"file": "tils/struct_pattern_matching.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@ -103,7 +102,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "tils/pdf_obsidian_at_page.md",
"file": "tils/struct_pattern_matching.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
@ -126,7 +125,7 @@
"state": {
"type": "outline",
"state": {
"file": "tils/pdf_obsidian_at_page.md"
"file": "tils/struct_pattern_matching.md"
}
}
},
@ -146,7 +145,7 @@
"state": {
"type": "file-properties",
"state": {
"file": "tils/pdf_obsidian_at_page.md"
"file": "tils/struct_pattern_matching.md"
}
}
}
@ -167,12 +166,12 @@
"command-palette:Open command palette": false
}
},
"active": "8ca86ec79a0654db",
"active": "3b2cd9884e9de93b",
"lastOpenFiles": [
"tils/pdf_obsidian_at_page.md",
"images/til-pdf-page.png",
"images/Pasted image 20230920175204.png",
"tils/asdf_direnv.md",
"tils/pdf_obsidian_at_page.md",
"tils/struct_pattern_matching.md",
"tils/tils.json",
"til.md",

View file

@ -1,5 +1,5 @@
---
date: Created
date: 2023-09-20
title: embed PDF in Obsidian at specific page
---
[Obsidian](https://obsidian.md/) is a powerful note taking tool and is how I write content for this very blog. It's a great way to organize your life, but did you know not only can you embed images, but PDF's and even specify which page they should preview at?

View file

@ -1,6 +1,6 @@
---
title: Struct Pattern Matching
date: Created
date: 2023-09-13
---
[Pattern Matching in Elixir](https://elixir-lang.org/getting-started/pattern-matching.html) feels like half of the language and may consume half of my TIL before long. But, today was the first day I realized you could specify that a pattern match could not just verify the contents of a map, but that it comes from a specific struct.