website/public/posts/_test.md
Snorre Ettrup Altschul 63644ecc7f did some more mining off camera
also posts can be hidden by prepending a _
2025-02-07 00:45:54 +01:00

80 lines
920 B
Markdown

0
Test
\title
---
\toc
# H1
## H2
### H3
#### H4
##### H5
This is regular text
[This is a link](#)
*italic text*
**bold text**
***bold italic***
---
`this is an inline code block`
```
this is a code block
```
```cpp
/*
* TEST CPP CODEBLOCK
*/
void main(int argc, char** argv) {
std::string this = "c++ code block";
int integer = 0;
return 0;
}
class TestClass : AbstractTestClass {
public:
TestClass();
~TestClass();
private:
void DoStuff() override {
// do some stuff
}
};
```
```nix
{ ... } @ inputs :
let
this = "a nix code block";
in
{
posts.test.content = ''
multiline string
'';
website.backend = (pkgs.callPackage (import gitlab:SpoodyTheOne/webbisitey) {});
}
```
- List
- Test
- here
> this
> is
> a
>
> QUOTE
> **QUOTE**
![test broken image](broken_image.png)
![test image](/test.png)
![test image](/test.png "Image with caption")