75 lines
1.4 KiB
Markdown
75 lines
1.4 KiB
Markdown
---
|
|
title: Test post
|
|
date: 2021-07-26
|
|
tags:
|
|
- test
|
|
---
|
|
|
|
<!-- comment -->
|
|
|
|
This post exists to test various features such as markdown-to-html conversion.<br />
|
|
A post have title, post date, tags, and content.
|
|
|
|
## Image
|
|
|
|
<img src="/icon/icon.svg" alt="developomp icon" width="100">
|
|
|
|
## Video
|
|
|
|
<div style="padding: 56.25% 0px 0px; position: relative;"><iframe src="https://www.youtube.com/embed/apLevp7QI8E?cc_load_policy=1&iv_load_policy=3&rel=0&start=24" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen scrolling="no" style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%;"></iframe></div>
|
|
|
|
## Table
|
|
|
|
| identifier | value |
|
|
| :--------- | :---- |
|
|
| one | 1 |
|
|
| two | 2 |
|
|
| three | 3 |
|
|
|
|
## List
|
|
|
|
- Unordered list
|
|
- sub item
|
|
- sub item
|
|
- Unordered list
|
|
- Unordered list
|
|
|
|
1. Ordered list
|
|
1. sub item
|
|
2. sub item
|
|
2. Ordered list
|
|
3. Ordered list
|
|
|
|
## Code
|
|
|
|
Here's a `code`.
|
|
|
|
```python
|
|
if __name__ == "__main__":
|
|
print("And here's a code block") # with comments!
|
|
```
|
|
|
|
## Etc
|
|
|
|
> blockquote
|
|
>
|
|
> > nested blockquote
|
|
|
|
**bold**<br />
|
|
_italic_<br />
|
|
~~strikethrough~~<br />
|
|
<u>underlined</u>
|
|
|
|
## Styling
|
|
|
|
<p align="center">
|
|
centered paragraph
|
|
</p>
|
|
|
|
## Key
|
|
|
|
<kbd>Ctrl</kbd>+<kbd>C</kbd>
|
|
|
|
## Mathematical expression
|
|
|
|
$e=mc^2$ is actually $e^2=(mc^2)^2 + (pc)^2$.
|