一种快速将markdown转换为html的方法

在一些Java Web项目中需要用markdown来写文章并保存到数据库中,从数据库中读取出来需要转换为html格式的代码段才能正确显示文章。

将markdown 转换为 html 有很多种方法,以下这种方法本人认为比较简便,几行 js 就可以搞定。

<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js">script>
<script src="https://cdn.bootcss.com/showdown/1.3.0/showdown.min.js">script>
<script type="text/javascript"> 
    var content ='${blog.article}'; //使用el表达式获取后台返回的markdown内容
    var converter = new showdown.Converter(); //初始化转换器
    var htmlcontent  = converter.makeHtml(content); //将MarkDown转为html格式的内容
    $("#article .article-entry").html(htmlcontent);//添加到 div 中 显示出来
script> 

你可能感兴趣的:(笔记)