Sha256: 0e766e473852b5ed8656ee0a20d3502deae5ffb8ab07f713b34196d3ed24953f

Contents?: true

Size: 467 Bytes

Versions: 24

Compression:

Stored size: 467 Bytes

Contents

require 'maruku'

text = <<EOF
Chapter 1
=========

It was a stormy and rainy night.

EOF

invalid = <<EOF

This is a [bad link.

EOF

Maruku.new(text).to_html

s = ""

begin 
	Maruku.new(invalid, {:on_error => :raise, :error_stream => s})
	puts "Error! It should have thrown an exception."
rescue
	# puts "ok, got error"
end

begin 
	Maruku.new(invalid, {:on_error => :warning, :error_stream => s})
rescue
	puts "Error! It should not have thrown an exception."
end

Version data entries

24 entries across 24 versions & 8 rubygems

Version Path
maruku-0.5.8 lib/maruku/usage/example1.rb
maruku-0.5.9 lib/maruku/usage/example1.rb
maruku-0.5.7 lib/maruku/usage/example1.rb
maruku-0.6.0 lib/maruku/usage/example1.rb