From 88be8de77331fe671d0a86f05d5164369fbc84ac Mon Sep 17 00:00:00 2001 From: "matthias@arch" Date: Fri, 16 Dec 2022 05:17:28 +0100 Subject: [PATCH] updated readme --- README.md | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ab9df7b..513355e 100644 --- a/README.md +++ b/README.md @@ -37,15 +37,16 @@ refer to the article [on my website](https://quintern.xyz/en/software/buwuma.htm - If a command-comment takes up a whole line, the whole line including the newline character is replaced. ---- - ## Commands ### include Include the content of a file at the position of the command. + **Synopsis**: `` + **Argument**: A absolute or relative path to a text file + **Return Value**: The content of the file or `` empty string if the file can not be opened. @@ -53,13 +54,17 @@ The content of the file or `` empty string if ### set Set the value of a variable + **Synopsis**: Set the value of `varname` to `this is the value`: `` + Set the value of `varname` depending on the value of `othervar`: `` + **Argument**: Any string + **Return Value**: The argument in comment tags This can be useful in multiline comments that contain other commands: In that case, the comment tags will be removed and each command replaced with @@ -85,10 +93,13 @@ its return value, so if you want to just have commented text in there you can us ### uncomment Uncomment the comment. + **Synopsis**: `` + **Argument**: Any string + **Return Value**: The argument This can be useful when you want to look at the unprocessed html without variables or when your syntax highlighting gets confused by a variable. @@ -98,37 +109,47 @@ This can be useful when you want to look at the unprocessed html without variabl ### sidenav Manage the generation of a content menu which contains links to all headings in your html that have an id. The menu is called sidenav here. An entry is a html heading with a id: `

This heading will be linked in the sidenav

` + **Synopsis**: `` sidenav-command must be one of the following: #### `include` Include the generated sidenav at this position. + **Argument**: Ignored + **Return Value**: The generated sidenav #### `section` Group all following entries in named section. + **Argument**: The name of the section + **Return Value** Empty string #### `name` Use a custom name instead of the heading itself for the link to the next heading. + **Argument**: The link-name of the next heading + **Return Value**: Empty string #### `custom` Include a custom link in the sidenav. + **Synopsis**: `` + **Argument**: Must be `href="..." name="..."`. Either single `'` or double `"` quotes are required. + **Return Value**: Empty string @@ -136,5 +157,5 @@ Empty string ## Pitfalls - The `#include` command must not be in the last line of the file -- The maps in `set` have **at least 2** options +- The maps in `set` must have **at least 2** options - If you want to use variables in markdown, you have to escape the `#` with a backslash, so `#$(var)` becomes `\#$(var)`