Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mianm12 committed Feb 1, 2025
1 parent a698523 commit 6cb4e89
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions content/posts/test/hello_world/index.en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---
title: "hello world"
date: 2024-05-25
lastmod: 2024-05-30
draft: false
description: "a description"
categories: ["test"]
tags: ["welcome", "example", "test"]
series: ["test"]
series_order: 1
---
{{< katex >}}
{{< typeit
tag=h2
loop=true
>}}
Hello world!
{{< /typeit >}}

an example to get you started

## This is a heading

### This is a subheading

#### This is a subsubheading

##### This is a subsubsubheading

~~This is a paragraph~~ with **bold** and *italic* text.
`Check` more at [Blowfish documentation](https://blowfish.page/)
undefined

- [ ] test1
- [x] test2
- [ ] test22
- [x] test23

1. item1
2. item2
3. item3
1. item3a
2. item3b

> We're living the future so
> the present is our past.
---

## code

```c {.line-numbers}
#include <stdio.h>

int main() {
printf("Hello, world!");
return 0;
}
```

```python
print('hello')
```

## table

| a | b |
| --- | --- |
| one | two |
| 3 | 4 |

## math

$$
\sum_{i=2}^ni=\frac{n(n+1)}{2}-1
$$

0 comments on commit 6cb4e89

Please sign in to comment.