This covers the basics of using markdown cells. You can think of markdown cells as documention for your code with extended features.
This cell can contain markdown language and render it.
A good reference for markdown is in this link: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
markdown
#Head 1
##Head 2
###Head 3
####Head 4
Alt Heading 1
============
Alt Heading 2
------------
markdown
- *Italic*
- _Italic_
- **Bold**
- __Bold__
- ~~Throught~~
markdown
- Item 1
- Item 2
1. Item 1
2. Item 2
1. Sub Item 1
2. Sub Item 2
3. Item 3
markdown
https://www.google.com
[Google](https://www.google.com)
[Google with tooltip](https://www.google.com "Google's Homepage")
markdown
![Alt Text](http://www.google.com/logos/2012/turing-doodle-static.jpg "Alan Turing's 100th Birthday")
```python s = "Python syntax highlighting" print s ``` ```javascript var s = "JavaScript syntax highlighting"; alert(s); ```
Website | URL | Rank |
---|---|---|
google.com | 1 | |
facebook.com | 2 | |
Youtube | youtube.com | 3 |
Website | URL | Rank |
---|---|---|
google.com | 1 | |
facebook.com | 2 | |
Youtube | youtube.com | 3 |
markdown
> ##Quote from some one else
> *with multiple lines*
<hr>
<p>Almost any <strong>HTML</strong> code will render<br />Just <i>fine</i>.</p>
markdown
---
***
___
markdown
©
®
™
Latex is a languange to represent mathematical formula using text.
For Latex documentation please check the wiki:
$x=y$ $$x=y$$
Alpha: $\alpha A$ Beta: $\beta B$ Gamma: $\gamma \Gamma$ Pi: $\pi \Pi \varpi$ Phi: $\phi \varphi \Phi$ Epsilon: $\epsilon \varepsilon$ Theta: $\theta \Theta \vartheta$ Rho: $\rho \varrho$ sigma: $\sigma \Sigma \varsigma$
$y = x + 5$ $y = x - 5$ $y = 5x$ $y = x \times 5$ $y = \frac{x}{5}$ $y = x \div 5$
markdown
$y_n = x_n - x_{n-1}$
$y = x^2 - 2x^{x-1}$
$^1/_2$ $\frac {1}{2}$
$\sqrt{\frac{1}{3}}$ $\sqrt[3]{2x}$
$\sum\limits_{i=1}^{10} t_i$ $\int\limits_a^b$ $\int_0^\infty \sin(x^2)$