mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -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.
752 B
752 B
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:
Images
You can embed images:
Lists
Unordered List
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
- Item 3
Ordered List
- First item
- Second item
- Third item
Code Blocks
You can include code blocks:
int main()
{
printf("Hello, world!");
}
