2022-12-16 05:11:16 +01:00
|
|
|
# bUwUma
|
|
|
|
`bUwUma` is a build system that uses **GNU make** and a **preprocessor** written in python to build **static**, **multilingual** websites.
|
|
|
|
|
|
|
|
This readme only documents the preprocessor.
|
|
|
|
For more information and a quickstart guide on how to use `bUwUma`, please
|
|
|
|
refer to the article [on my website](https://quintern.xyz/en/software/buwuma.html).
|
|
|
|
|
|
|
|
# HTML Preprocessor Documentation
|
|
|
|
## Syntax
|
|
|
|
### Commands
|
2022-12-16 05:14:21 +01:00
|
|
|
- All commands must be located within a html comment what starts with `<!--` and ends with `-->`.
|
|
|
|
- Commands start with a `#` character, the command must follow the `#` immediately.
|
|
|
|
- Everything after the command until the end of the comment or a newline character are considered the argument of the command.
|
|
|
|
|
|
|
|
```html
|
|
|
|
<!-- #command everything here is an argument -->
|
|
|
|
<!--
|
|
|
|
#command everything here is an argument
|
|
|
|
#anothercommand more arguments
|
|
|
|
While this is a comment right now, it will be UNCOMMENTED in the after the preprocessor finishes!
|
|
|
|
#comment This will be a single line html comment after the preprocessor finishes.
|
|
|
|
-->
|
|
|
|
```
|
|
|
|
|
|
|
|
- All commands return a string, which can be empty.
|
|
|
|
- If a comment contains a command, the entire comment will replaced with the return value of the command.
|
|
|
|
- If there are multiple commands in a command, it will be replaced by all the return values added together.
|
|
|
|
|
2022-12-16 05:11:16 +01:00
|
|
|
### Variables
|
2022-12-16 05:14:21 +01:00
|
|
|
- Variable names must only consist of these characters: `a-zA-Z0-9_`
|
|
|
|
- A variable with name `varname` can be used like this: `#$(varname)`
|
|
|
|
- A variable usage will be replaced by the value of the variable
|
|
|
|
- Any variable that has is not defined has empty string as value
|
|
|
|
|
2022-12-16 05:11:16 +01:00
|
|
|
### General
|
2022-12-16 05:14:21 +01:00
|
|
|
- Whitespaces around a token are ignored, so `<!--#include dir/file-->` is the same as `<!-- #include dir/file -->`
|
|
|
|
- If a command-comment takes up a whole line, the whole line including the newline character is replaced.
|
|
|
|
|
|
|
|
|
2022-12-16 05:11:16 +01:00
|
|
|
## Commands
|
|
|
|
### include
|
2022-12-16 05:14:21 +01:00
|
|
|
Include the content of a file at the position of the command.
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Synopsis**:
|
|
|
|
`<!-- #include path/to-a-text-file.html -->`
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Argument**:
|
|
|
|
A absolute or relative path to a text file
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Return Value**:
|
|
|
|
The content of the file or `<!-- Could not include '{args}' -->` empty string if the file can not be opened.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
2022-12-16 05:11:16 +01:00
|
|
|
### set
|
2022-12-16 05:14:21 +01:00
|
|
|
Set the value of a variable
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Synopsis**:
|
|
|
|
Set the value of `varname` to `this is the value`:
|
|
|
|
`<!-- #set varname this is the value -->`
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
Set the value of `varname` depending on the value of `othervar`:
|
|
|
|
`<!-- #set varname othervar?{*:fallback,key1:val1,key2:val2...}>`
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Argument**:
|
|
|
|
The first word is the name of the variable, the rest is the value or a dictionary.
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Return Value**:
|
|
|
|
Empty string
|
|
|
|
You can make the value of `varname` dependant on the value of another variable `othervar` by using a dictionary-like syntax described above.
|
|
|
|
In this case, `varname` will take the first value from the dictionary that matches tha value of `othervar`.
|
|
|
|
`*` always everything and can be used as fallback. General wildcards like `a*` to match everything that starts with a are not supported.
|
|
|
|
Instead of commas `,` you can also use semicolons `;` as separators, but this must be consistend within the map.
|
|
|
|
|
2022-12-16 05:11:16 +01:00
|
|
|
### default
|
2022-12-16 05:14:21 +01:00
|
|
|
Same as `set`, but it sets the variable's value only if it has no value yet.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
2022-12-16 05:11:16 +01:00
|
|
|
### comment
|
2022-12-16 05:14:21 +01:00
|
|
|
Comment the arguemnts.
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Synopsis**:
|
|
|
|
`<!-- #comment This will stay as comment in the html -->`
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Argument**:
|
|
|
|
Any string
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**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
|
|
|
|
its return value, so if you want to just have commented text in there you can use `#comment`
|
|
|
|
|
2022-12-16 05:11:16 +01:00
|
|
|
### uncomment
|
2022-12-16 05:14:21 +01:00
|
|
|
Uncomment the comment.
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Synopsis**:
|
|
|
|
`<!-- #uncomment This will not be commented -->`
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Argument**:
|
|
|
|
Any string
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**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.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
2022-12-16 05:11:16 +01:00
|
|
|
### sidenav
|
2022-12-16 05:14:21 +01:00
|
|
|
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: `<h1 id=myheading>This heading will be linked in the sidenav</h1>`
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Synopsis**:
|
|
|
|
`<!-- #sidenav sidenav-command arguments -->`
|
|
|
|
sidenav-command must be one of the following:
|
|
|
|
|
|
|
|
#### `include`
|
|
|
|
Include the generated sidenav at this position.
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Argument**:
|
|
|
|
Ignored
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Return Value**:
|
|
|
|
The generated sidenav
|
|
|
|
|
|
|
|
#### `section`
|
|
|
|
Group all following entries in named section.
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Argument**:
|
|
|
|
The name of the section
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Return Value**
|
|
|
|
Empty string
|
|
|
|
|
|
|
|
#### `name`
|
|
|
|
Use a custom name instead of the heading itself for the link to the next heading.
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Argument**:
|
2022-12-16 05:18:37 +01:00
|
|
|
The link-name of the next heading
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Return Value**:
|
2022-12-16 05:18:37 +01:00
|
|
|
Empty string
|
2022-12-16 05:14:21 +01:00
|
|
|
|
|
|
|
#### `custom`
|
|
|
|
Include a custom link in the sidenav.
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Synopsis**:
|
|
|
|
`<!-- #sidenav custom href="my-link" name="Go to my link!" -->`
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Argument**:
|
|
|
|
Must be `href="..." name="..."`. Either single `'` or double `"` quotes are required.
|
2022-12-16 05:17:28 +01:00
|
|
|
|
2022-12-16 05:14:21 +01:00
|
|
|
**Return Value**:
|
|
|
|
Empty string
|
|
|
|
|
|
|
|
---
|
|
|
|
|
2022-12-16 05:11:16 +01:00
|
|
|
## Pitfalls
|
2022-12-16 05:14:21 +01:00
|
|
|
- The `#include` command must not be in the last line of the file
|
2022-12-16 05:17:28 +01:00
|
|
|
- The maps in `set` must have **at least 2** options
|
2022-12-16 05:14:21 +01:00
|
|
|
- If you want to use variables in markdown, you have to escape the `#` with a backslash, so `#$(var)` becomes `\#$(var)`
|