Header 1
Header 2
Header 3
Header
Link to Header.
Link from other file Header
citation
citation
citation
Without data you’re just
another person with an opinion
Line breaks need two blanks at the end
give me a white char 1
give me two white chars 2
give me four white char 4
- item 1
- item 2
- item 3
Github markdown emoji list from rxaviers
VSCode Extension: Markdown Emoji, Matt Bierner
😃
😄
⚠️WARNING⚠️
❗IMPORTANT❗
🔥NEW🔥
✅ true
❌ false
🔴 red: +5V
🟠 orange: +3.3V
⚫ black: ground
⚪ white: ground (pull-down)
🟣 purple: I2C signal
🟢 green: clock signal
🟡 yellow: SPI signal
🔵 blue: analogue input
Input by pressing ‘Win’ + ‘.’ and select emoji.
| style |
markdown |
| italic |
italic1 italic2 |
| bold |
bold1 bold2 |
| stroke |
stroke |
| highlight |
==highlight1== highlight2 |
| underline |
underline++ |
Marked text 1
Marked text 2
color
- TODO: Important thing to do
- TODO: Less important thing to do
- DONE: Breath deeply and improve karma
| Syntax |
Description |
| Header |
Title |
| Paragraph |
Text |
The abbreviations (e.g. HTML, JS …) can be used everywhere and they will be extended by a hover text.
*[HTML]: HyperText Markup Language
*[JS]: Java Script
Footnote or longer footnote.
H20
H2O
X^2^
X2
$$
\sin^2(a)+\cos^2(a) = 1
$$
Automatic URL linking: http://www.asdf.com
Prevent automatic URL linking: http://www.asdf.com
URL using own text: link
Inline code uses `` code ``.
Codeblocks uses ``` code block ```:
|-- \folder
|-- file.txt
|-- \sub folder
|-- file.txt
def hello_world():
print("Hello world!")
|