From 7673d69b96cff840b0b6bce748fdb4887883aeb0 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Mon, 17 Mar 2008 23:01:35 +0000 Subject: Fixes #880: code tags not formatted correctly in the wiki (broken by r1216). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1271 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/redcloth.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/redcloth.rb b/lib/redcloth.rb index 7e88007a6..14940cb88 100644 --- a/lib/redcloth.rb +++ b/lib/redcloth.rb @@ -1130,7 +1130,7 @@ class RedCloth < String end end - ALLOWED_TAGS = %w(redpre pre) + ALLOWED_TAGS = %w(redpre pre code) def escape_html_tags(text) text.gsub!(%r{<((\/?)(\w+))}) {|m| ALLOWED_TAGS.include?($3) ? "<#{$1}" : "<#{$1}" } -- cgit v1.2.3