Skip to content

Latest commit

 

History

History
82 lines (57 loc) · 1.52 KB

Markdown.md

File metadata and controls

82 lines (57 loc) · 1.52 KB

Markdown CheatSheet

Writing Markdown is fairly simple. Checkout this guide for the basic syntax including stuff like:

  • headings
  • paragraphs
  • lists
  • code
  • links
  • images

Docsify helpers

This extension uses docsifiy for converting Markdown to HTML on the fly and there are some nice helpers included which extend the Markdown ruleset.

Important content

!> Never save passwords on GitHub

!> Never save passwords on GitHub

?> Clearing the cache can help!

?> Clearing the **cache** can help!

Tasks

  • Finished task
  • Something todo
  • Something else
- [x] Finished task
- [ ] Something todo
- [ ] Something else

Image resizing

The image instruction can receive reseizing information ':size=WIDTHxHEIGHT'. logo logo logo logo

![logo](../_img/typo3.png ':size=50x50')
![logo](../_img/typo3.png ':size=100')
![logo](../_img/typo3.png ':size=10%')

Using raw HTML

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!!