website/public/posts/test.md
2025-02-06 15:00:38 +01:00

66 lines
828 B
Markdown

0
Test
# 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";
return 0;
}
class TestClass : AbstractTestClass {
public:
TestClass();
~TestClass();
private:
void DoStuff() override {
// do some stuff
}
};
```
```nix
{ ... }:
let
this = "a nix code block";
in
{
posts.test.content = ''
multiline string
'';
website.backend = (pkgs.callPackage (import gitlab:SpoodyTheOne/webbisitey) {});
}
```
- List
- Test
- here
![test broken image](broken_image.png)
![test image](/test.png)
![test image](/test.png "Image with caption")