当前位置:   article > 正文

html添加markdown,为自己的网站添加Markdown——showdown.js使用教程

showdown 案例

步骤2引入到自己的项目中,结构如下:

415cbf665f8f

步骤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;

}

仿简书的markdown实例代码:

测试使用markdown

blockquote {

border-left:#eee solid 5px;

padding-left:20px;

}

ul li {

line-height: 20px;

}

code {

color:#D34B62;

background: #F6F6F6;

}

function convert(){

var text = document.getElementById("oriContent").value;

var converter = new showdown.Converter();

var html = converter.makeHtml(text);

document.getElementById("result").innerHTML = html;

}

运行结果:

415cbf665f8f

之后又发现一个开源库:

https://github.com/chjj/marked

使用方式相对简单一些,参照上面的实例,完成相同的功能,如下:

实例代码:

Title

function convert(){

var text = document.getElementById("oriContent").value;

var html = marked(text);

document.getElementById("result").innerHTML = html;

}

415cbf665f8f

暂时先看这两个开源库,目前都不能像简书一样对照片进行操作,待了解~

个人wx:iotzzh

前端公众hao:前端微说

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/548066
推荐阅读
相关标签
  

闽ICP备14008679号