# pandoc-ruby **Repository Path**: mirrors_xwmx/pandoc-ruby ## Basic Information - **Project Name**: pandoc-ruby - **Description**: Ruby wrapper for Pandoc - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-06 - **Last Updated**: 2026-02-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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://pandoc.org), 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](https://pandoc.org/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

\n

Heading

\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://pandoc.org) or run `man pandoc` ([also available here](https://pandoc.org/MANUAL.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.