I have a method of storing straight markup code (generate by PageDown's editor) into a database. On another page, I grab the markup from the database and run it through the markdown converter, however I can't seem to get any output. This is my script:

<script type="text/javascript" src="include/Markdown.Converter.js"></script>
<script type="text/javascript" src="include/Markdown.Sanitizer.js"></script>
<script type="text/javascript" src="include/Markdown.Editor.js"></script>
<script type="text/javascript">
    $(document).ready(function() {
        var converter = Markdown.Converter();
        $("#description-content").text(converter.makeHTML("<?php echo $description ?>"));
    });
</script>

PHP is echoing the pure markdown text from the database. When I visit the page, there isn't anything that shows up in the div. What am I doing wrong?

EDIT: I'm not seeing any echo'ed text and if I simple add plaintext inside the .text(), I can see it.

link|improve this question

What does $description contain? Do you get any JavaScript errors? – jprofitt Dec 28 '11 at 17:41
$description contains pure markdown source. Currently it contains: **this is bold** – MaxMackie Dec 28 '11 at 17:42
If I just put plain text inside the .text() part it works. – MaxMackie Dec 28 '11 at 17:44
I don't know much about PHP but i believe you can't use PHP inside javascript, since PHP is serverside and won't run in the users browser. – Andres Ilich Dec 28 '11 at 17:45
@AndresIlich, seeing as I'm echoing with PHP on the server side, the content of $description gets placed inside the jQuery when it reaches the browser. – MaxMackie Dec 28 '11 at 17:46
show 2 more comments
feedback

2 Answers

Markdown.Converter is a constructor; you have to use

var converter = new Markdown.Converter();
link|improve this answer
feedback

Maybe you can try using Showdown instead of PageDown and see if you get any different results, just as a test: https://github.com/coreyti/showdown/blob/master/src/showdown.js Showdown is another Markdown js implementation.

The code you have there doesn't look to have anything wrong with it, the only edge case I can think of would be unescaped quotation marks in $description.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.