aboutsummaryrefslogtreecommitdiff
path: root/plugin/notes/notes.html
diff options
context:
space:
mode:
authorAmit Kotlovski <amitbk@gmail.com>2013-05-01 23:10:31 +0300
committerAmit Kotlovski <amitbk@gmail.com>2013-05-01 23:10:31 +0300
commit381da383d9020c0d2c15ebdf5fabe1cea5440519 (patch)
treeab8b32f52ff0d9c11d09d2de34e37c0f0b1106eb /plugin/notes/notes.html
parent247771e129f431fc751140d8da4c2fe60815a51f (diff)
downloadfreenode-live-2017-presentation-381da383d9020c0d2c15ebdf5fabe1cea5440519.tar
freenode-live-2017-presentation-381da383d9020c0d2c15ebdf5fabe1cea5440519.tar.gz
Replace the ShowDown Markdown engine with marked
Diffstat (limited to 'plugin/notes/notes.html')
-rw-r--r--plugin/notes/notes.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index e14c6ac..830045d 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -159,7 +159,7 @@
<div id="notes"></div>
- <script src="../../plugin/markdown/showdown.js"></script>
+ <script src="../../plugin/markdown/marked.js"></script>
<script>
window.addEventListener( 'load', function() {
@@ -175,7 +175,7 @@
// No need for updating the notes in case of fragment changes
if ( data.notes !== undefined) {
if( data.markdown ) {
- notes.innerHTML = (new Showdown.converter()).makeHtml( data.notes );
+ notes.innerHTML = marked( data.notes );
}
else {
notes.innerHTML = data.notes;