From 1832b17be240717b0b19cd0a1bcbfef8370defda Mon Sep 17 00:00:00 2001 From: Geeekie Date: Sun, 22 Dec 2024 17:23:44 +0100 Subject: [PATCH 1/2] I made a mistake and fixed it --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 68109ee..ad16cb0 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -20,7 +20,7 @@ nav: - 'Troubleshooting': 'faqs/spotify/troubleshooting.md' - 'Playlist URI' : 'faqs/spotify/playlist-uri.md' - 'Stock Ticker': - - 'Getting started' : 'faqs\stock-ticker\getting-started.md' + - 'Getting started' : 'faqs/stock-ticker/getting-started.md' - 'Stream Counter': - 'Getting started': 'faqs/stream-counter/getting-started.md' - 'Troubleshooting': 'faqs/stream-counter/troubleshooting.md' From 1edd026b7a00f25ed49eb04bcf15b148bf84448d Mon Sep 17 00:00:00 2001 From: Geeekie Date: Sun, 29 Dec 2024 00:45:58 +0100 Subject: [PATCH 2/2] Added some {{ and }} --- docs/faqs/supermacro/examples.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/faqs/supermacro/examples.md b/docs/faqs/supermacro/examples.md index 031cbc8..c43a2ec 100644 --- a/docs/faqs/supermacro/examples.md +++ b/docs/faqs/supermacro/examples.md @@ -57,9 +57,9 @@ description: Looking for ideas on how to use the SuperMacro plugin? Find macro e
Add comments in the code using {{ "`{{//}}`" }} command ``` - {{ "INPUT:myNumber" }} {{ "//" }} User inputs number. - {{ "FUNC:MUL:MyResult:$myNumber:10" }} {{ "//" }} Multiply number by 10 - {{ "OUTPUTTOFILE:MyResult:c:\\temp\\result.txt" }} {{ "//" }} Save result in file + {{ "{{INPUT:myNumber}}" }} {{ "{{//}}" }} User inputs number. + {{ "{{FUNC:MUL:MyResult:$myNumber:10}}" }} {{ "{{//}}" }} Multiply number by 10 + {{ "{{OUTPUTTOFILE:MyResult:c:\\temp\\result.txt}}" }} {{ "{{//}}" }} Save result in file ```