英文:
markup for go language in appengine
问题
在Go语言中是否有一个标记库(如markdown或reST)?最好是:
- 与html/template一起使用
- 可用于appengine
我已经在这里进行了检查并在谷歌上搜索,但似乎没有任何结果显示出来。(也可能只是绑定)
英文:
Is there a markup library (such as markdown or reST) in go language? preferebly
- working with html/template
- available for appengine
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论