I’m exploring ProseMirror, as I’m looking for an MD editor that strictly obeys CommonMark. I was looking at the ProseMirror friendly example, however, and I noticed that it is not possible to embed only a header in a list; i.e.,
* # Hi
, which should render as
instead renders as
Hi
This is in contrast to the behavior exhibited in the markdown-it demo and the CommonMark demo. (Instead, it seems that the ProseMirror example implementation forces the first member of a list item to be a paragraph.)
The configuration options seem powerful (and, frankly, confusing). I just wanted to know if this is a configurable behavior, if this is intentional, or if this is a bug. Thanks!