如何使用纯 ruby 从 markdown 生成 PDF
我目前正在使用 Kramdown 从 Ruby 中的 Markdown 生成 HTML。 我知道我可以使用 kramdown 生成乳胶文件,并使用命令行实用程序将其转换为 pdf。但我想要一个纯红宝石解决方案。
有没有一种方法可以仅使用 ruby 将 markdown 转换为 pdf,而不使用命令行实用程序?
I'm currently using Kramdown to generate HTML from Markdown in Ruby.
I know that I can generate a latex file using kramdown and convert it to pdf usaing a command line utility. But I want a pure ruby solution.
Is there a way to convert markdown to pdf using only ruby without using command-line utilities?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你可以使用 https://github.com/walle/gimli
我就是为了这个目的而制作的。不过,我使用纺织品。但 gimli 支持 GitHub-Markup 支持的所有格式。
You can use https://github.com/walle/gimli
I made it just for this purpose. Though, I use textile. But gimli supports all formats supported by GitHub-Markup.
Prawn:纯 Ruby PDF 生成库
http://www.rubyinside.com/prawn-ruby-pdf-library -987.html
Prawn: The Pure Ruby PDF Generation Library
http://www.rubyinside.com/prawn-ruby-pdf-library-987.html
wkhtmltopdf
gem 也可用:http://rubygems.org/gems/wkhtmltopdfThe
wkhtmltopdf
gem is also available: http://rubygems.org/gems/wkhtmltopdfPandoc 是一个通用文档转换器,可以将 markdown、reStructuredText、textile、HTML、DocBook 或 LaTeX 中的文档转换为 HTML、EPUB、Microsoft Word、TeX、PDF(通过 LaTeX)、轻量级标记格式。
你可以在这里找到它。
http://johnmacfarlane.net/pandoc/
Pandoc is a universal document converter which can convert documents in markdown, reStructuredText, textile, HTML, DocBook, or LaTeX to HTML, EPUB, Microsoft Word, TeX, PDF via LaTeX, Lightweight markup formats.
You can find it here.
http://johnmacfarlane.net/pandoc/