When wanting to link to a file or folder outside of obsidian -

Working Example:

Search tips

You can filter out all of our daily notes from a search by adding the notation: -tag:journaling

Add box around text

box example

sample text

add front-matter to all notes for publishing (in powershell)

in Linux type pwsh in terminal to access powershell

$files = Get-ChildItem -path /home/giorgio/github/my-digital-garden/_notes -filter *.md -recurse -force
foreach ($file in $files)
{
   	$content = Get-Content $file.FullName
	$newString = "---
	`rtitle: " + $file.BaseName +"`r 
	---"
	Write-Output "================================ `r `n inserting" $newString " in" $file.FullName
	Set-Content $file.FullName -value $newString, $content
}