blob: 943129b476f8449de0a1d090f4bb5b69d8ca810e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
---
author: Firstname Lastname
date: 2023-07-06
description: Showing the capabilities of Panblog!
lang: en-US
plot: true
tags: blog,introduction
title: Capabilities of Panblog
---
Hello[^1], this is an example article showing the capabilities of
[Panblog](https://github.com/marvinborner/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 server-rendered $\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.
|