# MARKDOWN CHEATSHEET (Workshop Version)
## Hello World
### SUB-SUB--HEADING
#### SUB-SUB-SUB--HEADING
---
## TAGS
###### tags: `workshop`, `example`, `markdown`, `mindbug`
---
## EMPHASIS
**bold**, __bold again__
*italic*, _italic again_
~~strikethrough~~ supported
*You **can** combine **~~those~~** them*
---
## LISTS
### Bullet
* Item 1
* Item 2
* Item 2a
* Item 2b
* sub sub item
* kram
+ down
- now
### Numbered
1. Item 1
2. Item 2
3. Item 3
* Item 3a
* Item 3b
### Checklist (clickable)
- [x] this is a complete item
- [ ] this is an incomplete item
- [ ] to click or not to click ...
---
## BLOCKQUOTES
>
> > _It is a capital mistake to
> > theorize before one has data._
>
> Sherlock Holmes said.
“_A Study in Scarlett_” (Arthur Conan Doyle)
---
## BACKSLASH ESCAPES
Markdown provides backslash escapes for the following characters:
\\ backslash
\` backtick
\* asterisk
\_ underscore
\{} curly braces
\[] square brackets
\() parentheses
\# hash mark
\+ plus sign
\- minus sign (hyphen)
\. dot
\! exclamation mark
---
## FENCED CODE BLOCKS
Markdown coverts text into code block; you can wrap your code to create a code block without leading spaces. Add an optional language identifier and your code will get syntax highlighting.
```javascript
function test() {
console.log("look ma’, I code");
}
```
## LINKS
You can write down link directly:
researchdata.epfl.ch
or embed those with a different text:
[Research Data link](researchdata.epfl.ch)
### Images
Linking an image works more or less the same way, but needs an exclamation mark !

---
## LATEX FORMULAS
Oh yeah, you can do it baby:
$$\int_\Omega \nabla u \cdot \nabla v~dx = \int_\Omega fv~dx$$
Also check out this [LaTeX introduction](https://en.wikibooks.org/wiki/LaTeX/Mathematics).
---
## TABLES
You can create tables by assembling a list of words and dividing them with hyphens - (for the first row), and then separating each column with a pipe | :
First Header | Second Header
------------ | -------------
Content cell 1 | Content cell 2
Content column 1 | Content column 2
---
## EMOJI
:+1: :sparkles: :camel: :tada: :rocket: :metal:
---
# REFERENCES
https://guides.github.com/pdfs/markdown-cheatsheet-online.pdf
https://paperhive.org/help/markdown