xxxxxxxxxx
1
## Hello!
2
3
Paste your markdown code into the text field and it will be rendered here.
4
5
Uses [ShowDown](https://github.com/showdownjs/showdown) to convert markdown to HTML.
6
7
Press the `Link` button to get a _shareable link_ to your code! Note that significantly long URLs might not work correctly.
8
9
Changes are updated **live**. Uncheck `Live Update` if this is annoying.
10
11
You can save or load documents using the toolbar above.
12
13
```cpp
14
using namespace std;
15
16
int main(){
17
cout << "live markdown!" << endl;
18
return 0;
19
}
20
```
21