Test post
parent
6603437dee
commit
7dc4ef6791
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
@ -0,0 +1,44 @@
|
|||||||
|
title = 'Testing'
|
||||||
|
subtitle = 'In which we test my post renderer works correctly.'
|
||||||
|
author = 'Tom Panton'
|
||||||
|
tags = [
|
||||||
|
'Test',
|
||||||
|
'Lorem',
|
||||||
|
]
|
||||||
|
published = '2022-06-05T11:00:13.318217Z'
|
||||||
|
---
|
||||||
|
# Heading
|
||||||
|
## Subheading
|
||||||
|
Here is some **text**!!
|
||||||
|
|
||||||
|
testing that _italics_ work and ~~strikethrough~~
|
||||||
|
|
||||||
|
| Column A | Column 2 |
|
||||||
|
|:--------:|----------|
|
||||||
|
| aiwdio w | apwidho |
|
||||||
|
|
||||||
|
```ruby
|
||||||
|
def fib(n)
|
||||||
|
if n == 0 then
|
||||||
|
0
|
||||||
|
elsif n == 1 then
|
||||||
|
1
|
||||||
|
else
|
||||||
|
fib(n - 2) + fib(n - 1)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
Here is some code without any specific language:
|
||||||
|
|
||||||
|
```
|
||||||
|
func foo(f) {
|
||||||
|
if halts(f) {
|
||||||
|
print("Turings hate them for discovering this one simple trick");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Here is a [shameless plug](https://smolbotbot.com)!
|
||||||
|
|
||||||
|

|
||||||
Loading…
Reference in New Issue