Writing Markdown is fairly simple. Checkout this guide for the basic syntax including stuff like:
- headings
- paragraphs
- lists
- code
- links
- images
This extension uses docsifiy for converting Markdown to HTML on the fly and there are some nice helpers included which extend the Markdown ruleset.
!> Never save passwords on GitHub
!> Never save passwords on GitHub
?> Clearing the cache can help!
?> Clearing the **cache** can help!
- Finished task
- Something todo
- Something else
- [x] Finished task
- [ ] Something todo
- [ ] Something else
The image instruction can receive reseizing information ':size=WIDTHxHEIGHT'
.
![logo](../_img/typo3.png ':size=50x50')
![logo](../_img/typo3.png ':size=100')
![logo](../_img/typo3.png ':size=10%')
You need to insert a space between the html and markdown content.
Self-assessment (Click to expand)
- Abc
- Abc
<details>
<summary>Self-assessment (Click to expand)</summary>
- Abc
- Abc
</details>
!> Be aware that raw HTML does also mean JavaScript which can quickly lead to security issues!!