在AppEngine中用于Go语言的标记语言

huangapple go评论84阅读模式
英文:

markup for go language in appengine

问题

在Go语言中是否有一个标记库(如markdown或reST)?最好是:

我已经在这里进行了检查并在谷歌上搜索,但似乎没有任何结果显示出来。(也可能只是绑定)

英文:

Is there a markup library (such as markdown or reST) in go language? preferebly

I have checked here and searched google but nothing seems to be showing up. (could be just bindings as well)

答案1

得分: 6

https://github.com/knieriem/markdown - 一个将peg-markdown(使用PEG语法在C中实现的Markdown实现)翻译成Go的项目

https://github.com/russross/blackfriday - Blackfriday:一个用于Go的Markdown处理器

这两个项目都是纯Go编写的,应该可以在App Engine上正常工作,您应该能够在将Markdown渲染为HTML之前或之后扩展模板。

英文:

https://github.com/knieriem/markdown - A translation of peg-markdown (an implementation of Markdown in C, using a PEG grammar) into Go

https://github.com/russross/blackfriday - Blackfriday: a markdown processor for Go

Both are pure Go and should work fine on App Engine, you should be able to expand templates either after of before rendering the markdown to HTML.

huangapple
  • 本文由 发表于 2012年8月9日 18:59:19
  • 转载请务必保留本文链接:https://go.coder-hub.com/11881914.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定