Warning, /office/klevernotes/src/example/Demo/note.md is written in an unsupported language. File is not indexed.

0001 # h1 Heading 😎
0002 ## h2 Heading
0003 ### h3 Heading
0004 #### h4 Heading
0005 ##### h5 Heading
0006 ###### h6 Heading
0007 
0008 
0009 ## Horizontal Rules
0010 
0011 ___
0012 
0013 ---
0014 
0015 ***
0016 
0017 
0018 ## Emphasis
0019 
0020 **This is bold text**
0021 
0022 __This is bold text__
0023 
0024 *This is italic text*
0025 
0026 _This is italic text_
0027 
0028 ~~Strikethrough~~
0029 
0030 
0031 ## Blockquotes
0032 
0033 
0034 > Blockquotes can also be nested...
0035 >> ...by using additional greater-than signs right next to each other...
0036 > > > ...or with spaces between arrows.
0037 
0038 
0039 ## Lists
0040 
0041 #### Unordered
0042 
0043 + Create a list by starting a line with `+`, `-`, or `*`
0044 + Sub-lists are made by indenting 2 spaces:
0045   - Marker character change forces new list start:
0046     * Ac tristique libero volutpat at
0047     + Facilisis in pretium nisl aliquet
0048     - Nulla volutpat aliquam velit
0049 + Very easy!
0050 
0051 #### Ordered
0052 
0053 1. Lorem ipsum dolor sit amet
0054 2. Consectetur adipiscing elit
0055 3. Integer molestie lorem at massa
0056 
0057 
0058 1. You can use sequential numbers...
0059 1. ...or keep all the numbers as `1.`
0060 
0061 
0062 57. ... or tart numbering 
0063 1. with offset
0064 
0065 #### Tasks 
0066 
0067 - [ ] Make more foo
0068 - [x] Make more bar
0069 
0070 
0071 # Code
0072 
0073 Inline `code`
0074 
0075 Indented code
0076 
0077     // Some comments
0078     line 1 of code
0079     line 2 of code
0080     line 3 of code
0081 
0082 
0083 Block code "fences"
0084 
0085 ```C++
0086 #include <iostream>
0087 
0088 int main() {
0089     std::cout << "Hello World!";
0090     return 0;
0091 }
0092 ```
0093 
0094 ## Tables
0095 
0096 #### Default
0097 
0098 | Company | Contact | Country |
0099 | ------ | ------ | ------ |
0100 | Alfreds Futterkiste | Maria Anders | Germany |
0101 | Centro comercial Moctezuma | Francisco Chang | Mexico |
0102 | Ernst Handel | Roland Mendel | Austria |
0103 
0104 #### Only middle pipes are necessary  !
0105 
0106 Company | Contact | Country 
0107 ------ | ------ | ------
0108 Alfreds Futterkiste | Maria Anders | Germany
0109 Centro comercial Moctezuma | Francisco Chang | Mexico 
0110 Ernst Handel | Roland Mendel | Austria
0111 
0112 #### Choose columns alignment
0113 
0114 | Left | Center | Right |
0115 | :------ | :------: | ------:|
0116 | Alfreds Futterkiste | Maria Anders | Germany |
0117 | Centro comercial Moctezuma | Francisco Chang | Mexico |
0118 | Ernst Handel | Roland Mendel | Austria |
0119 
0120 
0121 ## Links
0122 
0123 [link text](https://invent.kde.org/office/klevernotes)
0124 
0125 [link with title](https://invent.kde.org/office/klevernotes "title text!")
0126 
0127 
0128 ## Images
0129 
0130 ![KDE](https://upload.wikimedia.org/wikipedia/commons/8/8d/KDE_logo.svg)
0131 
0132 #### Like links, Images also have a footnote style syntax
0133 
0134 ![Alt text][id]
0135 
0136 With a reference later in the document defining the URL location checkout the editor 😉
0137 
0138 [id]: https://upload.wikimedia.org/wikipedia/commons/8/8d/KDE_logo.svg  "The KDE logo"
0139 
0140 #### Image can also be stored locally with your note
0141 
0142 ![KleverNotes](./Images/logo.png "KleverNotes logo !") 
0143 
0144 Using notation like "/home/user/myfile.png" or "~/myfile.png" will also work if you want to access image stored on your system but not alongside your note 😁
0145