module ReverseAdoc

Constants

VERSION

Public Class Methods

cleaner() click to toggle source
# File lib/reverse_adoc.rb, line 24
def self.cleaner
  @cleaner ||= Cleaner.new
end
config() { |config| ... } click to toggle source
# File lib/reverse_adoc.rb, line 18
def self.config
  @config ||= Config.new
  yield @config if block_given?
  @config
end
convert(input, options = {}) click to toggle source
# File lib/reverse_adoc.rb, line 14
def self.convert(input, options = {})
  ReverseAdoc::HtmlConverter.convert(input, options)
end