我正在为我的页面使用这个 jQuery markdown。jQuery代码如下:
var converter = new Markdown.Converter();
$(document).ready(function(e) {
$('#content').html( converter.makeHtml($('#content').html()) );
/* and some more */
});
这一直运作良好。blockquote
直到现在我的页面都没有。今天,我尝试使用blockquote
内容,但页面没有正确解析 HTML。
文本存储在 MySQL 表中。考虑以下:
Just some
> random blockquote content. let's see if it works or not
此文本在降价编辑器框中正确显示:
但是当它作为网页打开时(我使用 Opera;但在所有其他浏览器中仍然存在问题,即 Firefox、Chrome 和 IE)
PS:所有图片均为缩略图。单击以获得更大的尺寸。