Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Description List #281

Closed
ghost opened this issue Feb 19, 2019 · 1 comment
Closed

Description List #281

ghost opened this issue Feb 19, 2019 · 1 comment

Comments

@ghost
Copy link

ghost commented Feb 19, 2019

if you put this markdown:

one two
: three four five six

it gives you the expected output with kramdown:

<dl>
  <dt>one two</dt>
  <dd>three four five six</dd>
</dl>

but not with cmark:

<p>one two
: three four five six</p>

this is because kramdown supports Description Lists:

https://kramdown.gettalong.org/syntax#definition-lists

while cmark only supports it as HTML block:

https://spec.commonmark.org/0.28#html-blocks

references:

@jgm
Copy link
Member

jgm commented Feb 23, 2019

That's an extension. Please search the forum talk.commonmark.org for discussion on this. This tracker isn't the right place for it.

@jgm jgm closed this as completed Feb 23, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant