You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CheezeNotes/templates/index.html

21 lines
532 B

<html>
<head>
<title>{{name}}</title>
<link rel="stylesheet" href="static/mdnotes.css">
</head>
<body>
<textarea id="ta" class="mdnotes" style="display: none;">
# Titre 1
Un petit texte
## Titre 2
### Titre 3-1
Encore un joli texte
### Titre 3-2
T'en as marre ???
#### Titre 4
Moi oui !!!</textarea>
<div id="mdnotes" class="mdnotes" oninput="return change(event)" contenteditable="true"></div>
<script type="text/javascript" src="static/mdnotes.js"></script>
</body>
</html>