mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
* reference: Added markdown example (with image support). * Reference/MarkdownViewer: Unnecessary SSL package removed. * reference/MarkdownViewer: Unnecessary build flag removed, menu functions restructured. * reference/MarkdownViewer: A default markdown example file (with image) added.
44 lines
752 B
Markdown
44 lines
752 B
Markdown
|
|
# Markdown Test Document
|
|
|
|
Markdown is a lightweight markup language with plain text formatting syntax. Its design allows it to be converted to many formats, but it's primarily used for formatting readme files, writing messages in online discussion forums, and creating rich text using a plain text editor.
|
|
|
|
## Links
|
|
|
|
Here are some examples of links:
|
|
|
|
- [U++](https://www.ultimatepp.org)
|
|
- [Markdown Guide](https://www.markdownguide.org)
|
|
|
|
## Images
|
|
|
|
You can embed images:
|
|
|
|

|
|
|
|
## Lists
|
|
|
|
### Unordered List
|
|
- Item 1
|
|
- Item 2
|
|
- Subitem 2.1
|
|
- Subitem 2.2
|
|
- Item 3
|
|
|
|
### Ordered List
|
|
1. First item
|
|
2. Second item
|
|
3. Third item
|
|
|
|
## Code Blocks
|
|
|
|
You can include code blocks:
|
|
|
|
```C++
|
|
int main()
|
|
{
|
|
printf("Hello, world!");
|
|
}
|
|
```
|
|
|
|
|