Compare commits

..

9 Commits

Author SHA1 Message Date
Sahal Ansari
2849f0ac0e added script to generate diff table for PRs. 2024-11-13 13:01:26 +01:00
Sahal Ansari
cea8224acf fix improper escape. 2024-11-13 13:01:26 +01:00
Sahal Ansari
130cf66693 updated remaining WRAP blocks with Mkdocs Admonitions 2024-11-13 13:01:26 +01:00
Sahal Ansari
738b13c314 formatting fixes for parameter expansion - my favorite article. 2024-11-13 13:01:26 +01:00
Sahal Ansari
991569619d missed some table formatting in last commit. 2024-11-13 13:01:26 +01:00
Florian Köhler
5fdf713d7a
Merge pull request #21 from sseering/main
Switch to using the standards format (requirements.txt) for Python deps.
2024-11-13 12:56:39 +01:00
Florian Köhler
8755bb9ae5
Merge pull request #22 from casperklein/patch-1
Some checks failed
Build and deploy to GitHub Pages / deploy (push) Has been cancelled
Remove typo
2024-11-07 11:18:32 +01:00
Casper
ad8de48569
remove typo 2024-11-06 15:08:05 +01:00
Stefan Seering
113cbf9225
Switch to using the standards format (requirements.txt) for Python dependencies. 2024-11-05 12:02:29 +01:00
3 changed files with 6 additions and 2 deletions

View File

@ -11,7 +11,7 @@ To edit and develop locally install the following packages and run the built in
```bash ```bash
python3 -m venv env python3 -m venv env
source env/bin/activate source env/bin/activate
pip install mkdocs-material mkdocs-git-revision-date-localized-plugin mkdocs-awesome-pages-plugin mkdocs-minify-plugin pip install -r requirements.txt
mkdocs serve mkdocs serve
``` ```

View File

@ -85,7 +85,7 @@ Doing specific tasks: concepts, methods, ideas:
| ------------------------------------------------ | ---------------------------------------------------------------- | | ------------------------------------------------ | ---------------------------------------------------------------- |
| **Grouping** | | | **Grouping** | |
| `{ ...; }` | [command grouping](syntax/ccmd/grouping_plain.md) | | `{ ...; }` | [command grouping](syntax/ccmd/grouping_plain.md) |
| `( ... .md)` | [command grouping in a subshell](syntax/ccmd/grouping_subshell.md) | | `( ... )` | [command grouping in a subshell](syntax/ccmd/grouping_subshell.md) |
| **Conditionals** | | | **Conditionals** | |
| `[[ ... ]]` | [conditional expression](syntax/ccmd/conditional_expression.md) | | `[[ ... ]]` | [conditional expression](syntax/ccmd/conditional_expression.md) |
| `if ...; then ...; fi` | [conditional branching](syntax/ccmd/if_clause.md) | | `if ...; then ...; fi` | [conditional branching](syntax/ccmd/if_clause.md) |

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
mkdocs-material
mkdocs-git-revision-date-localized-plugin
mkdocs-awesome-pages-plugin
mkdocs-minify-plugin