feat: added markdown file with all supported stylings

This commit is contained in:
nisch.codes 2025-03-16 19:06:35 +01:00
parent c5aea90ed3
commit 10314cb09d

View File

@ -1,61 +1,74 @@
This is a long note for my test of the local persitents. This is the extended version.
This is the testing Note for all the Markdown features.
# maybe with some headlines?
---
# 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
* list item 4
This is also very interesting. This for example is **bold** , and this**is**also bold and __this__ also.
But this *is italic* and this is also _italic_ and if I want to make something ***bold and italic*** than this is.
Second there are the sorted lists:
I am a bit hesitant that the next will work
> because this is a quote
but it works. Even the quote in a quote??
> so this is a quote
>> also is this...
After the unsorted lists, there are some sorted lists as well:
1. list item 1
2. list item 2
3. list item 3
maybe we can mix them?
Lastly you can combine both types of lists:
1. list item 1
- list item 1.1
1. list item
---
What about code?
`` console.log('hello world') ``
Another big topic is links. You can specify the link text, or not and you can use mail-addresses to generate a mailto link.
for code I want to extend the renderer.
---
lets test links:
* [Duck Duck Go](https://duckduckgo.com)
* [Nisch's projects and git server](https://projects.nisch.codes)
* <https://nisch.codes>
* <info@nisch.codes>
Links should also be extended
Next reference links:
---
* [JANE's Repository][1]
* [JANE's License][2]
Next lets try reference links:
* [Project Repository of nisch][1]
* [License of JANE][2]
[1]: https://projects.nisch.codes "gitea Server"
[1]: https://projects.nisch.codes/nischcodes/JANE "JANE - git repository"
[2]: https://projects.nisch.codes/nischcodes/JANE/src/branch/main/LICENSE
---
Images:
[![An old rock in the desert](images/testimage-4k.jpg "Shiprock, New Mexico by Beau Rogers")](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)
[![An old rock in the desert](images/testimage-4k.jpg "Shiprock, New Mexico by Beau Rogers")](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') ``