Skip to content
Snippets Groups Projects
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
Branches
Tags
No related merge requests found
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