We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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:
The text was updated successfully, but these errors were encountered:
That's an extension. Please search the forum talk.commonmark.org for discussion on this. This tracker isn't the right place for it.
Sorry, something went wrong.
No branches or pull requests
if you put this markdown:
it gives you the expected output with kramdown:
but not with cmark:
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:
The text was updated successfully, but these errors were encountered: