Skip to content
Snippets Groups Projects
  • Raniere Silva's avatar
    Fix check of glossary item · 45dbfcdc
    Raniere Silva authored
    CommonMark doesn't support definition list
    and we have to workaround this limitation.
    
    This commit removes the request
    that line continuation start with four white spaces
    because (1) CommonMark remove the white spaces and
    (2) Pandoc doesn't care about it.
    
        $ pandoc <<EOF
        foo
        :   bar
            continue
        EOF
        <dl>
        <dt>foo</dt>
        <dd>bar continue
        </dd>
        </dl>
        $ pandoc <<EOF
        foo
        :   bar
        continue
        EOF
        <dl>
        <dt>foo</dt>
        <dd>bar continue
        </dd>
        </dl>
    45dbfcdc