class Tilt::RstPandocTemplate

Pandoc reStructuredText implementation. See: pandoc.org/ Use PandocTemplate and specify input format

Public Instance Methods

pandoc_options() click to toggle source
Calls superclass method Tilt::PandocTemplate#pandoc_options
   # File lib/tilt/rst-pandoc.rb
13 def pandoc_options
14   options.merge!(f: 'rst')
15   super
16 end
tilt_to_pandoc_mapping() click to toggle source
   # File lib/tilt/rst-pandoc.rb
 9 def tilt_to_pandoc_mapping
10   { :smartypants => :smart }
11 end