Replace the ShowDown Markdown engine with marked

This commit is contained in:
Amit Kotlovski
2013-05-01 23:10:31 +03:00
parent 247771e129
commit 381da383d9
8 changed files with 1138 additions and 73 deletions

View File

@ -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;