网站添加Markdown——showdown.js使用教程

步骤1.下载showdown.js
步骤2引入到自己的项目中,结构如下:
网站添加Markdown——showdown.js使用教程_第1张图片
步骤3,引入到html,并使用

  

使用showdown.js的基本方式:

function compile(){

    //获取要转换的文字
    var text = document.getElementById("content").value;
    //创建实例
    var converter = new showdown.Converter();
    //进行转换
    var html = converter.makeHtml(text);
    //展示到对应的地方  result便是id名称
 document.getElementById("result").innerHTML = html;
}

插入图片写法

![avatar](远程图片路径)
![avatar](http://localhost:8800/hh/h1.jpg)

你可能感兴趣的:(JS)