diff options
author | Marvin Borner | 2023-07-06 22:03:08 +0200 |
---|---|---|
committer | Marvin Borner | 2023-07-06 22:31:46 +0200 |
commit | 6afe0a6961a959454d08f89fcfbb8a545902aa17 (patch) | |
tree | cdd4abe3b22addd31e2cd1b2fa727824267c1d30 /md |
Initial commit
Diffstat (limited to 'md')
-rw-r--r-- | md/2023-07-06-21.md | 76 | ||||
l--------- | md/2023-07-06-22.md | 1 | ||||
l--------- | md/2023-07-06-23.md | 1 |
3 files changed, 78 insertions, 0 deletions
diff --git a/md/2023-07-06-21.md b/md/2023-07-06-21.md new file mode 100644 index 0000000..34f6815 --- /dev/null +++ b/md/2023-07-06-21.md @@ -0,0 +1,76 @@ +--- +author: Firstname Lastname +date: 2023-07-06 +description: Showing the capabilities of Panblog! +lang: en-US +plot: true +title: Capabilities of Panblog +--- + +Hello[^1], this is an example article showing the capabilities of +[Panblog](https://github.com/panblog)! + +To see more examples, go to [my real +blog](https://text.marvinborner.de). + +# Code + +Code snippets with syntax highlighting: + +``` haskell +fibs = 1 : 1 : zipWith (+) fibs (tail fibs) +powerSet = filterM $ const [True, False] +``` + +Supports even the weirdest languages! + +``` c +void main() { + !error_occured() ??!??! handle_error(); + return 0; +} +``` + +# $\LaTeX$ + +Panblog supports $\LaTeX$! + +$$\nabla x\nabla p\approx\hslash$$ +$$x_{n+1}=x_n-\frac{f(x_n)}{f'(x_n)}$$ + +# Mermaid + +Generate mermaid diagrams using the `mermaid` filter! + +``` {.mermaid background="transparent" caption="cool sequence diagram"} +sequenceDiagram + participant P as People + participant B as Panblog + P->>+B: i want blog pls + B->>B: getting blog + B->>+P: here ur blog + P-->>-B: don't want it anymore + B->>B: confused + B-->>-P: go away +``` + +# Plots + +You can create some plots like that by setting `plot: true` in the +header: + + x y + --- ---- + 1 2 + 2 4 + 3 8 + 4 16 + 5 32 + +------------------------------------------------------------------------ + +Contact me using [email](mail)[^2]. + +[^1]: This is a footnote! + +[^2]: You need to edit `append.html` if you want your own email. diff --git a/md/2023-07-06-22.md b/md/2023-07-06-22.md new file mode 120000 index 0000000..06fbeb1 --- /dev/null +++ b/md/2023-07-06-22.md @@ -0,0 +1 @@ +2023-07-06-21.md
\ No newline at end of file diff --git a/md/2023-07-06-23.md b/md/2023-07-06-23.md new file mode 120000 index 0000000..06fbeb1 --- /dev/null +++ b/md/2023-07-06-23.md @@ -0,0 +1 @@ +2023-07-06-21.md
\ No newline at end of file |