I have an MVC3 site that needs to handle user posts. I am trying to use MarkItUp for the text edit because I like its full featured, easy to customize, functionality. However, I am using two markdown libraries for the conversion: Pagedown (client side), and MarkdownSharp (server side).
Here's the scripts within my editing view:
<script type="text/javascript" src="@Url.Content("~/scripts/jquery.markitup.js")"></script>
<script type="text/javascript" src="@Url.Content("~/scripts/jquery.markitup.settings.js")"></script>
<script type="text/javascript" src="@Url.Content("~/Scripts/Markdown.Converter.js")"></script>
<script type="text/javascript" src="@Url.Content("~/Scripts/Markdown.Sanitizer.js")"></script>
<script type="text/javascript" >
$(document).ready(function () {
var converter = new Markdown.Converter();
$('.editor').markItUp(markdownSettings);
$('.markdown').live('keyup', function () {
var md = $('#comment-editor').val();
var html = converter.makeHtml(md);
$('#preview').html(html);
});
$('.markdown').live('click', function () {
var md = $('#comment-editor').val();
var html = converter.makeHtml(md);
$('#preview').html(html);
});
});
</script>
And the HTML:
@Html.TextArea("html", "enter your text here", new { id = "comment-editor", @class = "editor" })
<div id="preview" class="markdown"></div>
So far so good. The issue/my question is... when I fire this up and begin typing, everything is groovy in that the preview is converting properly as I type, but Italic is not working. Whether i use the _ notation or single * notation, type or click in editor... it is not italicized.
Is there an issue between the Pagedown converter and the MarkItUp editor? Or did I noob-ishly miss something?
For clarification, here's what the preview DIV looks like (Firebug):
<div id="preview" class="markdown">
<p>stuff you <em>dont</em> see <em>every</em> day.</p>
</div>
Note that "dont" is marked with _ chars, and "every" with *.
<em>as they should. – one.beat.consumer Dec 16 '11 at 21:24<em>elements (you should be able to see this in Firebug too)? – Matthew Strawbridge Dec 16 '11 at 21:38<em>tags you can rest assured that Markdown is working as intended. – David Brainer-Banker Dec 16 '11 at 21:52