# File lib/maruku/input/parse_span_better.rb, line 428
        def read_strong(src, delim)
                src.ignore_chars(2)
                children = read_span(src, EscapedCharInText, nil, [delim])
                src.ignore_chars(2)
                md_strong(children)
        end