mmarkdown / mmark

Mmark: a powerful markdown processor in Go geared towards the IETF
https://mmark.miek.nl
Other
480 stars 45 forks source link

Attribute "start" not supported for list style="numbers" #75

Closed FiloSottile closed 5 years ago

FiloSottile commented 5 years ago

What went wrong?

mmark logs Attribute "start" not supported for list style="numbers" and makes the 2. element of a list start over at 1..

What version of mmark are you using?

v2.0.46

What command line did you use?

mmark -2

What platform (Linux/Apple/Windows)?

What is the most minimal markdown snippets that shows the problem?

1. Process the internal representation into a field element s as follows:

_some unindented code block here_

2. Return the canonical little-endian encoding of s.
miekg commented 5 years ago

The codeblock needs to be indented by 4 spaces respective to the list item, otherwise you end the current list.

On Wed, 8 May 2019, 17:12 Filippo Valsorda, notifications@github.com wrote:

To help us debug your issue please add these details. What went wrong?

mmark logs Attribute "start" not supported for list style="numbers" and makes the 2. element of a list start over at 1.. What version of mmark are you using?

v2.0.46 What command line did you use?

mmark -2

What platform (Linux/Apple/Windows)?

  • Linux
  • Apple
  • Windows

What is the most minimal markdown snippets that shows the problem?

  1. Process the internal representation into a field element s as follows:

some unindented code block here

  1. Return the canonical little-endian encoding of s.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/mmarkdown/mmark/issues/75, or mute the thread https://github.com/notifications/unsubscribe-auth/AACWIW67SBRP2JKF5UQ26JTPUL3XRANCNFSM4HLTE6WA .

FiloSottile commented 5 years ago

This is actually fixed by switching to v3, sorry for the noise.