Skip to content
Commit 45dbfcdc authored by Raniere Silva's avatar Raniere Silva
Browse files

Fix check of glossary item

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>
parent e8e144be
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment