Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xwmx/pandoc-ruby
Ruby wrapper for Pandoc
https://github.com/xwmx/pandoc-ruby
markdown markup markup-language pandoc restructuredtext ruby
Last synced: 3 days ago
JSON representation
Ruby wrapper for Pandoc
- Host: GitHub
- URL: https://github.com/xwmx/pandoc-ruby
- Owner: xwmx
- License: mit
- Created: 2009-10-12T19:51:17.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2023-11-25T00:18:22.000Z (about 1 year ago)
- Last Synced: 2025-01-11T07:07:30.163Z (10 days ago)
- Topics: markdown, markup, markup-language, pandoc, restructuredtext, ruby
- Language: Ruby
- Homepage:
- Size: 253 KB
- Stars: 342
- Watchers: 9
- Forks: 43
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-ruby-toolbox - pandoc-ruby - Ruby wrapper for Pandoc (HTML & Markup / Markup processors)
README
# PandocRuby
[![Build Status](https://img.shields.io/github/actions/workflow/status/xwmx/pandoc-ruby/tests.yml?branch=master)](https://github.com/xwmx/pandoc-ruby/actions)
[![Gem Version](https://img.shields.io/gem/v/pandoc-ruby)](http://rubygems.org/gems/pandoc-ruby)
[![Gem Downloads](https://img.shields.io/gem/dt/pandoc-ruby)](http://rubygems.org/gems/pandoc-ruby)PandocRuby is a wrapper for [Pandoc](http://johnmacfarlane.net/pandoc/), a
Haskell library with command line tools for converting one markup format to
another.Pandoc can convert documents from a variety of formats including markdown,
reStructuredText, textile, HTML, DocBook, LaTeX, and MediaWiki markup to a
variety of other formats, including markdown, reStructuredText, HTML, LaTeX,
ConTeXt, PDF, RTF, DocBook XML, OpenDocument XML, ODT, GNU Texinfo, MediaWiki
markup, groff man pages, HTML slide shows, EPUB, Microsoft Word docx, and more.## Installation
First, [install Pandoc](http://johnmacfarlane.net/pandoc/installing.html).
PandocRuby is available on [RubyGems](http://rubygems.org/gems/pandoc-ruby):
```bash
gem install pandoc-ruby
```To install with [Bundler](https://bundler.io/), add the following to your
Gemfile:```ruby
gem 'pandoc-ruby'
```Then run `bundle install`
## Usage
```ruby
require 'pandoc-ruby'
@converter = PandocRuby.new('# Markdown Title', from: :markdown, to: :rst)
puts @converter.convert
```This takes the Markdown formatted string and converts it to reStructuredText.
You can also use the `#convert` class method:
```ruby
puts PandocRuby.convert('# Markdown Title', from: :markdown, to: :html)
```Other arguments are simply converted into command line options, accepting
symbols and strings for options and hashes for options with arguments.```ruby
PandocRuby.convert('# Markdown Title', :s, {f: :markdown, to: :rst}, '--wrap=none', :table_of_contents)
```is equivalent to
```bash
echo "# Markdown Title" | pandoc -s -f markdown --to=rst --wrap=none --table-of-contents
```Also provided are `#to_[writer]` instance methods for each of the writers,
and these can also accept options:```ruby
PandocRuby.new('# Example').to_html(:ascii)
# => "Example
"
# or
PandocRuby.new("# Example").to_rst
# => "Example
# ======="
```Similarly, there are class methods for each of the readers, so readers
and writers can be specified like this:```ruby
PandocRuby.html("hello
").to_latex
# => "\\section{hello}"
```Available readers and writers are can be found in the following
variables:
- [`PandocRuby::READERS`](lib/pandoc-ruby.rb#L10)
- [`PandocRuby::STRING_WRITERS`](lib/pandoc-ruby.rb#L48)
- [`PandocRuby::BINARY_WRITERS`](lib/pandoc-ruby.rb#L104)
- [`PandocRuby::WRITERS`](lib/pandoc-ruby.rb#L113)PandocRuby assumes the `pandoc` executable is in your environment's `$PATH`
variable. If you'd like to set an explicit path to the `pandoc` executable,
you can do so with `PandocRuby.pandoc_path = '/path/to/pandoc'`### Converting Files
PandocRuby can also take an array of one or more file paths as the first
argument. The files will be concatenated together with a blank line between
each and used as input.```ruby
# One file path as a single-element array.
PandocRuby.new(['/path/to/file1.docx'], from: 'docx').to_html
# Multiple file paths as an array.
PandocRuby.new(['/path/to/file1.docx', '/path/to/file1.docx'], from: 'docx').to_html
```If you are trying to generate a standalone file with full file headers rather
than just a marked up fragment, remember to pass the `:standalone` option so
the correct header and footer are added.```ruby
PandocRuby.new("# Some title", :standalone).to_rtf
```### Extensions
Pandoc [extensions](https://pandoc.org/MANUAL.html#extensions) can be
used to modify the behavior of readers and writers. To use an extension,
add the extension with a `+` or `-` after the reader or writer name:```ruby
# Without extension:
PandocRuby.new("Line 1\n# Heading", from: 'markdown_strict').to_html
# => "Line 1
\nHeading
\n"# With `+blank_before_header` extension:
PandocRuby.new("Line 1\n# Heading", from: 'markdown_strict+blank_before_header').to_html
# => "Line 1 # Heading
\n
```### More Information
For more information on Pandoc, see the
[Pandoc documentation](http://johnmacfarlane.net/pandoc/)
or run `man pandoc`
([also available here](http://johnmacfarlane.net/pandoc/pandoc.1.html)).If you'd prefer a pure-Ruby extended markdown interpreter that can output a
few different formats, take a look at
[kramdown](https://kramdown.gettalong.org/). If you want to use the full
reStructuredText syntax from within Ruby, check out
[RbST](https://github.com/xwmx/rbst), a docutils wrapper.This gem was inspired by [Albino](http://github.com/github/albino). For a
slightly different approach to using Pandoc with Ruby, see
[Pandoku](http://github.com/dahlia/pandoku).## Note on Patches/Pull Requests
* Fork the project.
* Make your feature addition or bug fix.
* Add tests for it. This is important so I don't break it in a
future version unintentionally.
* Commit, do not mess with rakefile, version, or history.
(if you want to have your own version, that is fine but
bump version in a commit by itself I can ignore when I pull)
* Send me a pull request. Bonus points for topic branches.