go 语言markdown 转 html,go语言实现markdown解析库

Blackfriday是在Go中实现的Markdown处理器。您可以安全地输入用户提供的数据,速度快,支持通用扩展(表,智能标点符号替换等),并且对于所有utf-8(unicode)都是安全的输入。

** 文章转自go语言中文文档 [http://www.topgoer.com](http://www.topgoer.com/?from=studygolang "文章转自go语言中文文档http://www.topgoer.com") **

当前支持HTML输出以及Smartypants扩展。

### 使用

首先当然要引入:

```

import github.com/russross/blackfriday

```

然后

```

output := blackfriday.MarkdownBasic(input)

```

这里input是`[]byte`类型,可以将markdown类型的字符串强转为`[]byte`,即`input = []byte(string)`

如果想过滤不信任的内容,使用以下方法:

代码:

```go

package main

import (

"fmt"

"github.com/microcosm-cc/bluemonday"

"github.com/russross/blackfriday"

)

func main() {

input := []byte("### 5lmh.com是个不错的go文档网站")

unsafe := blackfriday.MarkdownCommon(input)

html := bluemonday.UGCPolicy().SanitizeBytes(unsafe)

fmt.Println(string(html))

}

```

基本上就这些操作

我的使用方法是在添加新文章时,将表单提交的数据直接通过上面的方法转换后,将markdown和转换后的内容都存储到数据库中

不过我在前端渲染时,又出现了问题,就是转换后的内容中的html标签会直接显示在网页上,为避免这种状况,我使用了自定义模板函数

```

// 定义模板函数

func unescaped(x string) interface{} { return template.HTML(x)}

// 注册模板函数

t := template.New("post.html")

t = t.Funcs(template.FuncMap{"unescaped": unescaped})

t, _ = t.ParseFiles("templates/post.html")

t.Execute(w, post)

// 使用模板函数

{{ .Content|unescaped }}

```

有疑问加站长微信联系(非本文作者))

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值