class UltraMarkdown::SyntaxConverter

Public Class Methods

new(options={}) click to toggle source
# File lib/ultra_markdown/syntax_convertor.rb, line 16
def initialize(options={})
  @options = options
end

Public Instance Methods

is_rss() click to toggle source
# File lib/ultra_markdown/syntax_convertor.rb, line 20
def is_rss
  if !@options[:is_rss]
    return false
  else
    return @options[:is_rss]
  end

end