From efb78301525f29c0f456885fe3c5ecafd6ca2d25 Mon Sep 17 00:00:00 2001 From: constantinos Date: Fri, 20 Dec 2024 12:15:56 +0200 Subject: [PATCH] add test content --- content/entry/entry with spaces.md | 7 ++++ content/entry/entry2-1.md | 9 +++++ content/entry/test-entry.md | 9 +++++ content/entry/test-links.md | 56 ++++++++++++++++++++++++++++++ 4 files changed, 81 insertions(+) create mode 100644 content/entry/entry with spaces.md create mode 100644 content/entry/entry2-1.md create mode 100644 content/entry/test-entry.md create mode 100644 content/entry/test-links.md diff --git a/content/entry/entry with spaces.md b/content/entry/entry with spaces.md new file mode 100644 index 0000000..d617c6d --- /dev/null +++ b/content/entry/entry with spaces.md @@ -0,0 +1,7 @@ ++++ +title = 'Entry with spaces' +date = '2024-12-20T11:49:28+02:00' +draft = false +keywords= ["draft"] +abstract= "Text for abstract..." ++++ diff --git a/content/entry/entry2-1.md b/content/entry/entry2-1.md new file mode 100644 index 0000000..3da8f6f --- /dev/null +++ b/content/entry/entry2-1.md @@ -0,0 +1,9 @@ ++++ +title = 'Test 2' +date = '2024-12-19T16:16:57+02:00' +draft = false +keywords= ['draft'] ++++ + +- [test-links](entry/test-links.md) +- [Obsidian links](entry/test-links.md#Obsidian%20links) diff --git a/content/entry/test-entry.md b/content/entry/test-entry.md new file mode 100644 index 0000000..d2ea136 --- /dev/null +++ b/content/entry/test-entry.md @@ -0,0 +1,9 @@ ++++ +title = 'Test' +date = '2024-12-19T16:16:57+02:00' +draft = false +keywords= ['draft'] ++++ + +- [test-links](entry/test-links.md) +- [entry2-1](entry/entry2-1.md) diff --git a/content/entry/test-links.md b/content/entry/test-links.md new file mode 100644 index 0000000..e26568a --- /dev/null +++ b/content/entry/test-links.md @@ -0,0 +1,56 @@ ++++ +date = '2024-12-19T15:53:38+02:00' +draft = false +title = 'Test: Obsidian links' ++++ + + +# Obsidian links +- [Entry2](entry/test-entry.md) +- [Invalid entry](entry/invalid.md) +- [Invalid triad destination](invalid/something.md) +- [entry with spaces](entry/entry%20with%20spaces.md) (Obsidian replaces spaces with `%20`) + +--- + +``` +- [Entry2](entry/entry2.md) +- [EntryXXX](entry/entry25.md) +- [Invalid triad destination](invalid/something.md) +``` + + +# Standard Sandpoints links + +![Link label](entry:test-entry) + +--- + +``` +![Link label](entry:test-entry) +``` + + +# Subheading links +[Subheading](#Test) + +--- + +``` +[subheading](#Test) +``` + +# WWW Links +- [google](http://google.com) +- [google](http://google.com "Go to google") + +--- + +``` +- [google](http://google.com) +- [google](http://google.com "Go to google") +``` + + +# Test +empty subheading for testing \ No newline at end of file