fix graph

This commit is contained in:
jaden 2022-06-07 18:42:21 -06:00
parent 4dd0793858
commit 8fbaaca60b
7 changed files with 383 additions and 216 deletions

View File

@ -7,7 +7,8 @@ disablePathToLower = true
ignoreFiles = [ ignoreFiles = [
"/content/templates/*", "/content/templates/*",
"/content/private/*", "/content/private/*",
"/content/vault/templates/*" "/content/vault/templates/*",
"/content/vault/pocket/*"
] ]
summaryLength = 20 summaryLength = 20
paginate = 10 paginate = 10

View File

@ -9,5 +9,6 @@
"oz-image-plugin", "oz-image-plugin",
"quick-latex", "quick-latex",
"wikilinks-to-mdlinks-obsidian", "wikilinks-to-mdlinks-obsidian",
"obsidian-local-images" "obsidian-local-images",
"code-block-copy"
] ]

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{ {
"id": "obsidian-pocket", "id": "obsidian-pocket",
"name": "Pocket", "name": "Pocket",
"version": "0.7.1", "version": "0.8.0",
"minAppVersion": "0.12.11", "minAppVersion": "0.12.11",
"description": "Access your Pocket reading list entries and create notes for them easily", "description": "Access your Pocket reading list entries and create notes for them easily",
"author": "Nimalan Mahendran", "author": "Nimalan Mahendran",

View File

@ -9,7 +9,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "taylor.md", "file": "Approximation.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
@ -22,7 +22,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "taylor.md", "file": "Approximation.md",
"mode": "preview", "mode": "preview",
"source": false "source": false
} }
@ -104,7 +104,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "taylor.md", "file": "Approximation.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -121,7 +121,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "taylor.md", "file": "Approximation.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@ -133,7 +133,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "taylor.md" "file": "Approximation.md"
} }
} }
}, },
@ -155,17 +155,17 @@
"direction": "horizontal", "direction": "horizontal",
"width": 300 "width": 300
}, },
"active": "cdd64046e6539952", "active": "e6ce38905c7e26b9",
"lastOpenFiles": [ "lastOpenFiles": [
"Approximation.md",
"Simpson's Rule.md",
"arc length.md",
"taylor.md", "taylor.md",
"binomial series.md", "binomial series.md",
"econometrics/stats-econ-lecture-notes-plus.md", "econometrics/stats-econ-lecture-notes-plus.md",
"recovered stats lecture notes.md", "recovered stats lecture notes.md",
"econometrics/stats-econ-lecture-notes.md", "econometrics/stats-econ-lecture-notes.md",
"LinearAlgebra1.md", "LinearAlgebra1.md",
"mean value theorem.md", "mean value theorem.md"
"Integration by Parts.md",
"systems of linear equations and matrices..md",
"ss12.md"
] ]
} }

View File

@ -6,7 +6,7 @@ enableLatex: true
enableSPA: true enableSPA: true
enableFooter: true enableFooter: true
enableContextualBacklinks: true enableContextualBacklinks: true
enableRecentNotes: false enableRecentNotes: true
description: description:
Jaden Lorenc's site. Jaden Lorenc's site.
page_title: page_title:

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module github.com/jaded0/quartz_personal_site
go 1.18