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.
$descriptioncontain? Do you get any JavaScript errors? – jprofitt Dec 28 '11 at 17:41$descriptioncontains pure markdown source. Currently it contains:**this is bold**– MaxMackie Dec 28 '11 at 17:42.text()part it works. – MaxMackie Dec 28 '11 at 17:44$descriptiongets placed inside the jQuery when it reaches the browser. – MaxMackie Dec 28 '11 at 17:46