From dc8ef80cc6bf23c74f39c53a91803ec6e888b721 Mon Sep 17 00:00:00 2001 From: GitJournal Date: Thu, 26 Jun 2025 08:10:18 -0600 Subject: [PATCH] Added Note TODO homelab.md --- TODO homelab.md | 9 + docs/features/backlinking.md | 10 + .../features/built-in-note-embedding-types.md | 29 +++ docs/features/commands.md | 73 ++++++ .../custom-markdown-preview-styles.md | 31 +++ docs/features/custom-snippets.md | 10 + docs/features/daily-notes.md | 53 +++++ docs/features/graph-visualization.md | 103 ++++++++ docs/features/including-notes.md | 18 ++ docs/features/link-reference-definitions.md | 85 +++++++ docs/features/note-properties.md | 51 ++++ docs/features/note-templates.md | 218 +++++++++++++++++ docs/features/paste-images-from-clipboard.md | 12 + docs/features/resource-filters.md | 42 ++++ docs/features/tags.md | 58 +++++ docs/features/wikilinks.md | 37 +++ docs/frequently-asked-questions.md | 23 ++ docs/getting-started/creating-new-notes.md | 9 + .../get-started-with-vscode.md | 44 ++++ docs/getting-started/keyboard-shortcuts.md | 17 ++ .../getting-started/recommended-extensions.md | 25 ++ .../sync-notes-with-source-control.md | 12 + docs/getting-started/write-notes-in-foam.md | 70 ++++++ docs/index.md | 53 +++++ docs/publishing/generate-gatsby-site.md | 34 +++ docs/publishing/math-support-with-katex.md | 54 +++++ docs/publishing/math-support-with-mathjax.md | 51 ++++ docs/publishing/publish-to-github-pages.md | 49 ++++ docs/publishing/publish-to-github.md | 16 ++ docs/publishing/publish-to-gitlab-pages.md | 224 ++++++++++++++++++ .../publish-to-netlify-with-eleventy.md | 18 ++ docs/publishing/publish-to-vercel.md | 83 +++++++ docs/publishing/publishing.md | 24 ++ docs/recipes/add-images-to-notes.md | 13 + ...ically-expand-urls-to-well-titled-links.md | 24 ++ docs/recipes/capture-notes-with-drafts-pro.md | 140 +++++++++++ ...notes-with-shortcuts-and-github-actions.md | 63 +++++ docs/recipes/diagrams-in-markdown.md | 25 ++ docs/recipes/export-to-pdf.md | 53 +++++ docs/recipes/how-to-write-recipes.md | 38 +++ docs/recipes/make-backlinks-more-prominent.md | 18 ++ docs/recipes/markup-converter.md | 43 ++++ docs/recipes/migrating-from-obsidian.md | 6 + docs/recipes/migrating-from-onenote.md | 36 +++ docs/recipes/migrating-from-roam.md | 6 + docs/recipes/note-macros.md | 58 +++++ docs/recipes/predefined-user-snippets.md | 50 ++++ docs/recipes/recipes.md | 110 +++++++++ docs/recipes/search-for-notes.md | 10 + docs/recipes/shows-image-preview-on-hover.md | 10 + docs/recipes/web-clipper.md | 14 ++ .../write-your-notes-in-github-gist.md | 55 +++++ docs/tools/cli.md | 10 + docs/tools/foam-logging-in-vscode.md | 20 ++ docs/tools/orphans.md | 10 + docs/tools/workspace-janitor.md | 38 +++ 56 files changed, 2495 insertions(+) create mode 100644 TODO homelab.md create mode 100644 docs/features/backlinking.md create mode 100644 docs/features/built-in-note-embedding-types.md create mode 100644 docs/features/commands.md create mode 100644 docs/features/custom-markdown-preview-styles.md create mode 100644 docs/features/custom-snippets.md create mode 100644 docs/features/daily-notes.md create mode 100644 docs/features/graph-visualization.md create mode 100644 docs/features/including-notes.md create mode 100644 docs/features/link-reference-definitions.md create mode 100644 docs/features/note-properties.md create mode 100644 docs/features/note-templates.md create mode 100644 docs/features/paste-images-from-clipboard.md create mode 100644 docs/features/resource-filters.md create mode 100644 docs/features/tags.md create mode 100644 docs/features/wikilinks.md create mode 100644 docs/frequently-asked-questions.md create mode 100644 docs/getting-started/creating-new-notes.md create mode 100644 docs/getting-started/get-started-with-vscode.md create mode 100644 docs/getting-started/keyboard-shortcuts.md create mode 100644 docs/getting-started/recommended-extensions.md create mode 100644 docs/getting-started/sync-notes-with-source-control.md create mode 100644 docs/getting-started/write-notes-in-foam.md create mode 100644 docs/index.md create mode 100644 docs/publishing/generate-gatsby-site.md create mode 100644 docs/publishing/math-support-with-katex.md create mode 100644 docs/publishing/math-support-with-mathjax.md create mode 100644 docs/publishing/publish-to-github-pages.md create mode 100644 docs/publishing/publish-to-github.md create mode 100644 docs/publishing/publish-to-gitlab-pages.md create mode 100644 docs/publishing/publish-to-netlify-with-eleventy.md create mode 100644 docs/publishing/publish-to-vercel.md create mode 100644 docs/publishing/publishing.md create mode 100644 docs/recipes/add-images-to-notes.md create mode 100644 docs/recipes/automatically-expand-urls-to-well-titled-links.md create mode 100644 docs/recipes/capture-notes-with-drafts-pro.md create mode 100644 docs/recipes/capture-notes-with-shortcuts-and-github-actions.md create mode 100644 docs/recipes/diagrams-in-markdown.md create mode 100644 docs/recipes/export-to-pdf.md create mode 100644 docs/recipes/how-to-write-recipes.md create mode 100644 docs/recipes/make-backlinks-more-prominent.md create mode 100644 docs/recipes/markup-converter.md create mode 100644 docs/recipes/migrating-from-obsidian.md create mode 100644 docs/recipes/migrating-from-onenote.md create mode 100644 docs/recipes/migrating-from-roam.md create mode 100644 docs/recipes/note-macros.md create mode 100644 docs/recipes/predefined-user-snippets.md create mode 100644 docs/recipes/recipes.md create mode 100644 docs/recipes/search-for-notes.md create mode 100644 docs/recipes/shows-image-preview-on-hover.md create mode 100644 docs/recipes/web-clipper.md create mode 100644 docs/recipes/write-your-notes-in-github-gist.md create mode 100644 docs/tools/cli.md create mode 100644 docs/tools/foam-logging-in-vscode.md create mode 100644 docs/tools/orphans.md create mode 100644 docs/tools/workspace-janitor.md diff --git a/TODO homelab.md b/TODO homelab.md new file mode 100644 index 0000000..efcb88c --- /dev/null +++ b/TODO homelab.md @@ -0,0 +1,9 @@ +--- +created: 2025-06-26T08:08:31-06:00 +modified: 2025-06-26T08:10:18-06:00 +type: Checklist +--- + +# TODO homelab + +- [ ] https://marketplace.visualstudio.com/items?itemName=OpenTofu.vscode-opentofu diff --git a/docs/features/backlinking.md b/docs/features/backlinking.md new file mode 100644 index 0000000..7f34a55 --- /dev/null +++ b/docs/features/backlinking.md @@ -0,0 +1,10 @@ +# Backlinking + +When using [[wikilinks]], you can find all notes that link to a specific note in the **Connections Explorer** + +- Run `Cmd` + `Shift` + `P` (`Ctrl` + `Shift` + `P` for Windows), type "connections" and run the **Explorer: Focus on Connections** view. +- Keep this pane always visible to discover relationships between your thoughts +- You can drag the connections panel to a different section in VS Code if you prefer. See: [[make-backlinks-more-prominent]] +- You can filter the connections to see just backlinks, forward links, or all connections +- Finding backlinks in published Foam workspaces via [[materialized-backlinks]] is on the [[roadmap]] but not yet implemented. + diff --git a/docs/features/built-in-note-embedding-types.md b/docs/features/built-in-note-embedding-types.md new file mode 100644 index 0000000..64cd6e5 --- /dev/null +++ b/docs/features/built-in-note-embedding-types.md @@ -0,0 +1,29 @@ +# Built-In Note Embedding Types + +When embedding a note, there are a few ways to modify the scope of the content as well as its display style. The following are Foam keywords that are used to describe note embedding. + +Note, this only applies to note embedding, not embedding of attachments or images. + +![Note Embed Types GIF](../../assets/images/note-embed-type-demo.gif) + +## Scope + +- `full` - the entire note in the case of `![[note]]` or the entire section in the case of `![[note#section1]]` +- `content` - everything excluding the title of the section. So the entire note minus the title for `![[note]]`, or the entire section minus the section header for `![[note#section1]]` + +## Style + +- `card` - outlines the embedded note with a border +- `inline` - adds the note continuously as if the text were part of the calling note + +## Default Setting + +Foam expresses note display type as `-