# File lib/maruku/input/parse_block.rb, line 171 def read_header12(src) line = src.shift_line.strip al = nil # Check if there is an IAL if new_meta_data? and line =~ /^(.*?)\{(.*?)\}\s*$/ line = $1.strip ial = $2 al = read_attribute_list(CharSource.new(ial, src)) end text = parse_span line if text.empty? text = "{#{ial}}" al = nil end level = src.cur_line.md_type == :header2 ? 2 : 1; src.shift_line md_header(level, text, al) end