72 lines
1.8 KiB
Markdown
72 lines
1.8 KiB
Markdown
This is the testing Note for all the Markdown features.
|
|
|
|
# Heading 1
|
|
## Heading 2
|
|
### Heading 3
|
|
#### Heading 4
|
|
##### Heading 5
|
|
###### Heading 6
|
|
|
|
---
|
|
|
|
This is some text which includes **bold** text and some more __bold__ text. But also some *italic* text and more _italic_ text. There is even text with a mixture of ***bold and italic*** text.
|
|
|
|
---
|
|
|
|
Must texts have some quotes included, so this note also have some quotes...
|
|
|
|
> This is a single quote
|
|
|
|
...and quotes in quotes.
|
|
> This is the outer quote
|
|
>> This is a inner quote
|
|
|
|
---
|
|
|
|
When it comes to lists, there are quite a few.
|
|
|
|
First there is the unsorted list:
|
|
|
|
* list item 1
|
|
* list item 2
|
|
* list item 3
|
|
|
|
Second there are the sorted lists:
|
|
|
|
1. list item 1
|
|
2. list item 2
|
|
3. list item 3
|
|
|
|
Lastly you can combine both types of lists:
|
|
|
|
1. list item 1
|
|
- list item 1.1
|
|
1. list item
|
|
|
|
---
|
|
|
|
Another big topic is links. You can specify the link text, or not and you can use mail-addresses to generate a mailto link.
|
|
|
|
* [Nisch's projects and git server](https://projects.nisch.codes)
|
|
* <https://nisch.codes>
|
|
* <info@nisch.codes>
|
|
|
|
Next reference links:
|
|
|
|
* [JANE's Repository][1]
|
|
* [JANE's License][2]
|
|
|
|
[1]: https://projects.nisch.codes/nischcodes/JANE "JANE - git repository"
|
|
[2]: https://projects.nisch.codes/nischcodes/JANE/src/branch/main/LICENSE
|
|
|
|
---
|
|
|
|
Images:
|
|
|
|
[](https://www.flickr.com/photos/beaurogers/31833779864/in/photolist-Qv3rFw-34mt9F-a9Cmfy-5Ha3Zi-9msKdv-o3hgjr-hWpUte-4WMsJ1-KUQ8N-deshUb-vssBD-6CQci6-8AFCiD-zsJWT-nNfsgB-dPDwZJ-bn9JGn-5HtSXY-6CUhAL-a4UTXB-ugPum-KUPSo-fBLNm-6CUmpy-4WMsc9-8a7D3T-83KJev-6CQ2bK-nNusHJ-a78rQH-nw3NvT-7aq2qf-8wwBso-3nNceh-ugSKP-4mh4kh-bbeeqH-a7biME-q3PtTf-brFpgb-cg38zw-bXMZc-nJPELD-f58Lmo-bXMYG-bz8AAi-bxNtNT-bXMYi-bXMY6-bXMYv)
|
|
|
|
---
|
|
|
|
At the end, there is Code:
|
|
|
|
`` console.log('hello world') `` |