vault backup: 2024-08-10 08:53:16

This commit is contained in:
2024-08-10 08:53:16 -05:00
parent 2638be3d58
commit 8563fded64
92 changed files with 55052 additions and 77 deletions

View File

@@ -1,4 +1,5 @@
[
"obsidian-git",
"obsidian-importer"
"obsidian-importer",
"numerals"
]

View File

@@ -17,6 +17,6 @@
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 0.7132754626224475,
"scale": 0.3628873693012147,
"close": false
}

54660
.obsidian/plugins/numerals/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "numerals",
"name": "Numerals",
"version": "1.5.0",
"minAppVersion": "0.16.0",
"description": "Numerals turns any code block into an advanced calculator. Evaluates math expressions on each line of a code block, including units, currency, and optional TeX rendering.",
"author": "RyanC",
"authorUrl": "https://github.com/gtg922r/obsidian-numerals",
"isDesktopOnly": false
}

301
.obsidian/plugins/numerals/styles.css vendored Normal file
View File

@@ -0,0 +1,301 @@
/* @settings
name: Numerals
id: numerals-style
settings:
-
id: numerals-comment
title: In-line Comment Color
description: Color of the text in in-line comments. Default is `--code-comment`.
type: variable-themed-color
format: hex
opacity: false
default-light: '#'
default-dark: '#'
-
id: numerals-heading
title: Heading / Comment Line Color
description: Color of lines with only a comment. Default is `--code-comment`.
type: variable-themed-color
format: hex
opacity: false
default-light: '#'
default-dark: '#'
-
id: numerals-background
title: Block background color
description: Background color of the block. Default is same as code-block background.
type: variable-themed-color
format: hex
opacity: false
default-light: '#'
default-dark: '#'
-
id: numerals-alternating-row-color
title: Alternating Row Color
description: Background color for the row when alternating rows (when enabled)
type: variable-themed-color
format: hex
opacity: false
default-light: '#'
default-dark: '#'
-
id: numerals-font
title: Numerals block font
description: Font used for Numerals block. Default is same as a code-block
type: variable-text
default: ''
-
id: numerals-size
title: Numerals block font size
description: Accepts an CSS font-size value. Default is same as a code-block
type: variable-text
default: ''
-
id: numerals-emitter-input-weight
title: Annotated Result Input Font Weight
description: Font weight for input which has result annotation (`=>`) (accepts CSS font-weight value). Default is `var(--normal-weight)`.
type: variable-text
default: ''
*/
/***********************************/
/******** Non-setting specific **/
body {
--numerals-comment: var(--code-comment);
--numerals-heading: var(--code-comment);
--numerals-background: var(--code-background);
--numerals-font: var(--font-monospace);
--numerals-size: var(--code-size);
--numerals-emitter-input-weight: var(--normal-weight);
--numerals-alternating-row-color: var(--background-modifier-hover);
}
.numerals-syntax .numerals-input span {
padding: 0 2px;
}
.numerals-syntax .numerals-input {
overflow-wrap: break-word;
}
.numerals-block .numerals-input .math-parenthesis,
.numerals-block .numerals-input .math-paranthesis {
padding-left: 0px;
padding-right: 0px;
}
.numerals-block .numerals-input .math-number {
color: var(--code-value);
}
.numerals-block .numerals-input .math-string {
color: var(--code-string);
}
.numerals-block .numerals-input .math-boolean {
color: var(--code-value);
}
.numerals-block .numerals-input .math-undefined {
color: var(--code-keyword);
display: none;
}
.numerals-block .numerals-input .math-function {
color: var(--code-function);
}
.numerals-block .numerals-input .math-parameter {
color: var(--code-property);
}
.numerals-block .numerals-input .math-property {
color: var(--code-property);
}
.numerals-block .numerals-input .math-symbol {
color: var(--code-property);
}
.numerals-block .numerals-input .math-operator {
color: var(--code-operator);
}
.numerals-block .numerals-input .math-parenthesis,
.numerals-block .numerals-input .math-paranthesis {
color: var(--code-punctuation);
padding-left: 0px;
padding-right: 0px;
}
.numerals-block .numerals-input .math-separator {
color: var(--code-punctuation);
}
.numerals-block {
color: var(--code-normal);
background-color: var(--numerals-background);
font-family: var(--numerals-font);
font-size: var(--numerals-size);
padding: var(--size-4-4);
}
.numerals-block .MathJax {
text-align: left !important;
margin-top: .5em !important;
margin-bottom: .5em !important;
}
.numerals-input.numerals-empty {
font-weight: bold;
color: var(--numerals-heading);
}
.numerals-input .numerals-tex {
display:inline-block;
}
.numerals-input .numerals-inline-comment {
display: inline-block;
padding-left: 1em;
color: var(--numerals-comment);
}
.numerals-input .numerals-sum {
font-style: italic;
}
.numerals-alt-row-color .numerals-line:nth-child(even){
background-color: var(--numerals-alternating-row-color);
}
.numerals-alt-row-color .numerals-line .numerals-input{
padding-left: var(--size-2-2);
}
.numerals-alt-row-color .numerals-line .numerals-result {
padding-right: var(--size-2-2);
}
.numerals-error-name {
color:var(--color-red);
padding-right: var(--size-4-2);
}
/**********************************/
/* ** Right-aligned Style ** */
/* TODO Switch to a diffent display layout so that result can be centered */
.numerals-answer-right .numerals-line {
line-height: var(--line-height-tight);
clear: both;
overflow: auto;
}
.numerals-answer-right .numerals-input {
float: left;
}
.numerals-answer-right .numerals-result {
float: right;
color: var(--code-punctuation);
}
/**********************************/
/* ** Two Panes Style ** */
/* this leads to filling all the way to the bottom of the container. probably bigger than desired */
.numerals-panes .numerals-line {
line-height: var(--line-height-tight);
}
.numerals-panes .numerals-line {
display: flex;
}
.numerals-panes .numerals-input {
width:75%;
}
.numerals-panes .numerals-result {
color: var(--code-punctuation);
background-color: var(--background-modifier-hover);
width: 25%;
text-align: left;
padding-left: var(--size-2-2);
border-left: 1px solid var(--background-modifier-border-focus);
}
/* .numerals-panes .MathJax {
float:left;
} */
/**********************************/
/* ** Result on following line ** */
.numerals-answer-below .numerals-line {
line-height: var(--line-height-tight);
}
.numerals-answer-below .numerals-line .numerals-result,
.numerals-answer-below .numerals-line .numerals-input {
display:block;
}
.numerals-answer-below .numerals-line .numerals-result {
color: var(--code-punctuation);
padding-left: var(--size-4-4);
padding-bottom: var(--size-2-1);
}
.numerals-answer-below .numerals-line .numerals-input {
padding-top: var(--size-2-1);
}
.numerals-answer-below .numerals-input.numerals-empty {
padding-top: var(--size-4-3);
padding-bottom: var(--size-4-1);
}
.numerals-answer-below .numerals-result.numerals-empty {
display: none;
}
/* Don't show text in .numerals-result that and aren't descendents of .numerals-emitter */
.numerals-emitters-present:not(.numerals-hide-non-emitters) .numerals-result:not(.numerals-emitter .numerals-result) {
color: var(--code-comment);
}
.numerals-emitter .numerals-input {
font-weight: var(--numerals-emitter-input-weight)
}
.numerals-emitters-present.numerals-hide-non-emitters .numerals-result:not(.numerals-emitter .numerals-result) {
color: transparent;
}
/**********************************/
/* ** Inline Style ** */
/* TODO Switch to a diffent display layout so that result can be centered */
.numerals-answer-right .numerals-line {
line-height: var(--line-height-tight);
/* clear: both; */
/* overflow: auto; */
}
.numerals-answer-inline .numerals-input {
display:inline-block;
padding-right: 20px;
/* float: left; */
}
.numerals-answer-inline .numerals-result {
/* float: right; */
color: var(--code-punctuation);
display:inline-block;
}
/***************************/
/* ** Suggestion Style ** */
/* .numerals-suggestion-icon {
--icon-size: 1em;
} */
.numerals-suggestion {
font-family: var(--numerals-font);
font-size: var(--numerals-size);
}

View File

@@ -37,7 +37,7 @@
"state": {
"type": "markdown",
"state": {
"file": "2024-08-08 (Thursday).md",
"file": "Chapel/Announcements/Announcements 6.md",
"mode": "source",
"source": false
}
@@ -110,7 +110,7 @@
"state": {
"type": "backlink",
"state": {
"file": "2024-08-08 (Thursday).md",
"file": "Chapel/Announcements/Announcements 6.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@@ -127,7 +127,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "2024-08-08 (Thursday).md",
"file": "Chapel/Announcements/Announcements 6.md",
"linksCollapsed": false,
"unlinkedCollapsed": false
}
@@ -150,7 +150,7 @@
"state": {
"type": "outline",
"state": {
"file": "2024-08-08 (Thursday).md"
"file": "Chapel/Announcements/Announcements 6.md"
}
}
}
@@ -173,53 +173,53 @@
},
"active": "1ac72aa6ecff8db5",
"lastOpenFiles": [
"Reading/Read Later/Paper Moving off the Map.md",
"Reading/Read Later/httpsworld.hey.comdhhcloud-exit-pays-off-in-performance-too-4c53b697.md",
"Reading/Read Later/httpsblackgirlbytes.deva-beginners-guide-to-prompt-engineering-with-github-copilot.md",
"Reading/Read Later/Real World Recommendation System Part 1.md",
"Reading/Read Later/2020-01-31 Tech Talk - Michael Sterling - Royalties - Faithlife Coders - Amber.md",
"[3.md",
"Quick Notes/Questions for PATHAR.md",
"Quick Notes/Sams club.md",
"Quick Notes/Sams Club 1.md",
"Quick Notes/Sams club 2.md",
"Quick Notes/Sams club 3.md",
"Chapel/116 announcements.md",
"Quick Notes/Announcements.md",
"Reading Movies/How to read a movie.md",
"Recipes/Pancakes.md",
"Recipes/Marinated Smoked Goose Breast Recipe.md",
"Recipes/Are You Game Smoked Goose Breasts Ducks Unlimited.md",
"Topical studies/Leaving a church/When is it right to leave a church.md",
"Topical studies/Leaving a church/Scriptural Reasons for Leaving a Church.md",
"Topical studies/Leaving a church/How To Leave a Church BiblicalEldership.com.md",
"Work/Switching jobs pros and cons.md",
"Chapel/Announcements 1.md",
"Camps/Good News Camp 2019/Preparation.md",
"Camps/Good News Camp 2018/Testimony.md",
"Camps/Good News Camp 2018/Meal-time devotions.md",
"Camps/Good News Camp 2018/Counselor Meeting Notes.md",
"2024-08-10 (Saturday).md",
"Quick Notes/Songs.md",
"Quick Notes/Losing a baby.md",
"Quick Notes/Jozwick Sams list.md",
"Quick Notes/David r obey start point.md",
"Chapel/Announcements/Chapel announcements 115.md",
"Quick Notes/Book recommendations.md",
"Chapel/Announcements/Announcements 12172023.md",
"Chapel/Announcements/Announcements 6.md",
"Chapel/Prayer meeting notes/Chapel, 9272020.md",
"Chapel/Prayer meeting notes/Chapel, 342020.md",
"Chapel/Prayer meeting notes",
"Messages/2020.02.09 Fasting.md",
"Home Maintenance/Bathroom faucets.md",
"Freelance/OAP/OAP PayPal calculations errors.md",
"Freelance/Brandhoot/Coupon service.md",
"Chapel/Chapel prayer items.md",
"Bible Study/Five Aspects of Men Study.md",
"Chapel/Feedback for Chris for his May 19th message.md",
"Bible Study/Romans",
"Bible Study/Psalms",
"Bible Study/Hebrews",
"Bible Study/Galatians",
"Bible Study/1 Thessalonians",
"Bible Study/1 Peter",
"Chapel/Response to Holly.md",
"Chapel/FBH singing 1013.md",
"Chapel/Kids singing 1013.md",
"Chapel/FBH singing, 1282019.md",
"Chapel/Announcements/Sunday announcements.md",
"Chapel/Security team first meeting planning.md",
"Chapel/Shepherding a Child's Heart book club.md",
"Chapel/Announcements/Chapel announced 1232023.md",
"Chapel/Board meeting notes",
"Chapel/Elders meeting notes",
"Chapel/Announcements",
"_Attachments/Exported image 20240808113933-0.gif",
"_Attachments/Exported image 20240808113924-0.png",
"_Attachments/Exported image 20240808113917-0 1.jpeg",
"_Attachments/Exported image 20240808114111-0.jpeg",
"_Attachments/Exported image 20240808113938-0.png",
"_Attachments/305e82da0687bc4fb7ab116f2a3407cf.pdf",
"_Attachments/p4028.pdf",
"_Attachments/Exported image 20240808113939-0.jpeg",
"_Attachments/Exported image 20240808113917-0.jpeg",
"_Attachments/Exported image 20240808113914-0.png",
"_Attachments/Exported image 20240808113940-0.jpeg",
"_Attachments/Exported image 20240808113911-0.png",
"httpsblackgirlbytes.deva-beginners-guide-to-prompt-engineering-with-github-copilot.md/Attachment.pdf",
"httpsworld.hey.comdhhcloud-exit-pays-off-in-performance-too-4c53b697.md/Attachment.pdf",
"_Attachments",
"2024-08-05 Duplicate billing profile bug hunting (BEN-1564).canvas",
"Logos meeting notes",
"Reading Movies",
"Quick Notes",
"Prayer Meetings",
"Messages",
"Untitled.canvas"
]
}