[!quote] Title by [[author]] via [[publication]]. Published on date. Accessed on today. Text of the quote.
Brief explanation of why I saved this quote, and any other associated thoughts it gave me about connections, expansions, etc. The annotation, basically.
View numbering-snippet.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ol { | |
list-style-type: upper-roman; | |
} | |
ol ol { | |
list-style-type: upper-alpha; | |
} | |
ol ol ol { | |
list-style-type: decimal; |
View minimal-tweak-active.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#calendar-container .active, | |
.flair.mod-pop, | |
.horizontal-tab-nav-item.is-active, | |
.linter-navigation-item-selected, | |
.nav-file-title.is-active, | |
.vertical-tab-nav-item.is-active, | |
.community-item.is-selected, | |
.mod-cta { | |
text-shadow: 1px 1px 1px black; | |
} |
View annotation template.md
View obsidian-vii-callouts.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Settings for all callouts / admonitions: */ | |
.callout { | |
background-color: hsl(220, 16%, 16%); | |
} | |
/* Settings for individual callouts / admonitions: */ | |
.callout[data-callout="important"] { /* same name as in callout to be changed */ | |
--callout-color: 19, 203, 232; /* rgb only */ |
View print.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Obsidian snippet to style output of pdf exports | |
*/ | |
@media print { | |
/* set your preferred fonts here. | |
*/ | |
:root { | |
--body-font-family: "Newsreader Text", TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif; |
View randomQuote.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const apiUrl = "http://api.quotable.io/random?tags="; | |
async function start() { | |
var quote; | |
var cite; | |
const response = await fetch(apiUrl); | |
const data = await response.json(); | |
if (response.ok) { | |
// Update DOM elements |
View Daily Note Template.md
Error in user YAML: (<unknown>): did not find expected ',' or ']' while parsing a flow sequence at line 1 column 10
---
aliases: ["<% tp.date.now("MMMM Do, YYYY", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("MMMM D, YYYY", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("MMM D, YYYY", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("MMM. D, YYYY", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("M/D/YYYY", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("M-D-YYYY", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("YYYY-MM-DD", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("M.D.YYYY", 0, tp.file.title, "YYYY.MM.DD") %>",]
tags: DailyNote <%tp.file.title.split('-')[0]%>
---
📆 <%tp.file.title%>
« [[<%tp.date.now("YYYY-MM-DD", -1, tp.file.title, "YYYY-MM-DD") %>]] | [[<% tp.date.now("YYYY-MM-DD", 1, tp.file.title, "YYYY-MM-DD") %>]] »
View gist:decf46c9b6e0c66ecd4b47bd045ab403
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GMail: https://mail.google.com/mail/ | |
GSuite Mail: https://mail.google.com/a/gsuitedomain.com/mail/ |
View QOwnNotes-settings.ini
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[SettingsExport] | |
platform=windows | |
[General] | |
ActiveNoteHistoryItem=@Variant(\0\0\0\x7f\0\0\0\x10NoteHistoryItem\0\0\0\0(\0W\0\x65\0l\0\x63\0o\0m\0\x65\0 \0t\0o\0 \0Q\0O\0w\0n\0N\0o\0t\0\x65\0s\0\0\0\0\0\0\0\0\0\0\0\0) | |
LastUpdateCheck=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x84\xe7\x4\xe7\x12\x15\0) | |
NoteHistory-1=@Variant(\0\0\0\t\0\0\0\x1\0\0\0\x7f\0\0\0\x10NoteHistoryItem\0\0\0\0(\0W\0\x65\0l\0\x63\0o\0m\0\x65\0 \0t\0o\0 \0Q\0O\0w\0n\0N\0o\0t\0\x65\0s\0\0\0\0\0\0\0\0\0\0\0\0) | |
NoteHistoryCurrentIndex-1=0 | |
PiwikClientId=7aea4643dc1d09b4 | |
SearchEngineId=2 |
View github_labels.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "name": "Priority: Low", "color": "#009800" }, | |
{ "name": "Priority: Medium", "color": "#fbca04" }, | |
{ "name": "Priority: High", "color": "#eb6420" }, | |
{ "name": "Priority: Critical", "color": "#e11d21" }, | |
{ "name": "Status: Abandoned", "color": "#000000" }, | |
{ "name": "Status: Accepted", "color": "#009800" }, | |
{ "name": "Status: Available", "color": "#bfe5bf" }, | |
{ "name": "Status: Blocked", "color": "#e11d21" }, | |
{ "name": "Status: Completed", "color": "#006b75" }, |
NewerOlder