Sync to lastest Maruku. Tweak to CSS stylesheet.
This commit is contained in:
parent
b19e1e4f47
commit
ceb0931bb3
15 changed files with 290 additions and 98 deletions
|
@ -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}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue