ultimatepp/reference/MarkdownViewer/example.md
İsmail Yılmaz aa31f3e84a
reference: Added markdown example (with image support). (#212)
* 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.
2024-10-30 20:12:53 +01:00

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.

Here are some examples of links:

Images

You can embed images:

Sample Image

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:

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