[[Describe this app and list installation sources]]
Setup note publishing
- Follow these instructions
- If Netlify cannot deploy the page, try this fix First deploy fails · Issue #167 · oleeskild/obsidian-digital-garden · GitHub
Troubleshooting
Some notes are not reachable via links or didn’t apply frontmatter modifications
- Bug: Frontmatter isn’t parsed for files edited in external programs · Issue #176 · oleeskild/obsidian-digital-garden · GitHub
- Search for
"dg-publish: true"
and open all files - Run
Digital Garden: Publish Multiple Notes
again
Open all corrupt notes in Obsidian to repair their cache
Set-Location "D:\DEV\digitalgarden\"
git pull
Set-Location "D:\DEV\digitalgarden\src\site\notes"
Get-ChildItem -Filter "*.md" -Recurse | where {
Select-String -Path $_ -Pattern "dg-publish: true"
} | foreach {
$corruptNote = Resolve-Path $_.FullName -Relative
explorer "`"obsidian:///D:\Notes\$corruptNote`""
Start-Sleep 1
}
explorer "`"obsidian://advanced-uri?commandname=Reload app without saving`""
Open all published notes in Obsidian to repair their cache
Get-ChildItem -Path "D:\Notes" -Filter "*.md" -Recurse | where {
Select-String -Path $_ -Pattern "dg-publish: true"
} | foreach {
explorer "obsidian:///$($_.FullName)"
Start-Sleep 1
}
What is a digital garden
- GitHub - MaggieAppleton/digital-gardeners: Resources, links, projects, and ideas for gardeners tending their digital notes on the public interwebs
- What are digital gardens? – Chuck Grimmett
- Digital Garden | Aaron Young
- What are digital gardens? – Chuck Grimmett
- How to set up your own digital garden - Ness Labs
- Maggie Appleton
Sources:
- 2023-01-22: A Brief History and Ethos of the Digital Garden - Obsidian Hub - Obsidian Publish
- 2023-01-22: Digital garden - Obsidian Hub - Obsidian Publish
Related:
Tags: