This is a simple Markdown example with some inline code.
List
- First item
- Second item
- Third item with
code
Numbered list
- Step one
- Step two
- Step three
Table
| Topic | Example |
|---|---|
| Type | std::uint32_t |
| Container | std::array<int, 4> |
| Function | void init_uart() |
| Pointer | const char* message |
Code block
const message = "Hello World";
console.log(message);
That is all.