From b7a3b8aa949aaecc76a301b9c3383d63f6ba0053 Mon Sep 17 00:00:00 2001 From: Jacques Distler Date: Tue, 1 Jun 2010 10:39:55 -0500 Subject: [PATCH] Minor Update From Current Maruku --- vendor/plugins/maruku/lib/maruku/output/to_html.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/plugins/maruku/lib/maruku/output/to_html.rb b/vendor/plugins/maruku/lib/maruku/output/to_html.rb index d0fff196..45b1093d 100644 --- a/vendor/plugins/maruku/lib/maruku/output/to_html.rb +++ b/vendor/plugins/maruku/lib/maruku/output/to_html.rb @@ -832,7 +832,7 @@ If true, raw HTML is discarded from the output. pre = Element.new('pre') pre.attributes['style'] = 'border: solid 3px red; background-color: pink' pre.attributes['class'] = 'markdown-html-error' - pre << Text.new("HTML parse error: \n#{raw_html}", true) + pre << Text.new("REXML could not parse this XML/HTML: \n#{raw_html}", true) return pre end end