Sync to lastest Maruku. Tweak to CSS stylesheet.

This commit is contained in:
Jacques Distler 2007-01-22 11:34:51 -06:00
parent b19e1e4f47
commit ceb0931bb3
15 changed files with 290 additions and 98 deletions

View file

@ -59,6 +59,7 @@ module MaRuKu; module In; module Markdown; module BlockLevelParser
when :ial
m = InlineAttributeList.match src.shift_line
content = m[1] || ""
# puts "Content: #{content.inspect}"
src2 = CharSource.new(content, src)
interpret_extension(src2, output, [nil])
when :ald
@ -468,7 +469,7 @@ module MaRuKu; module In; module Markdown; module BlockLevelParser
end
id = match[1]; url = match[2]; title = match[3];
id = id.strip.downcase
id = id.strip.downcase.gsub(' ','_')
hash = self.refs[id] = {:url=>url,:title=>title}