Bug when putting code between two fenced code blocks?

Hi, I think there is a bug with the editor/renderer when putting markdown code between two fenced code blocks. I tried the following code on try.commonmark.org and it gives correct output, but here it is:

int main() {
    return 0;
}

Paragraph

header

  • list

  • of

  • things

Another paragraph

int main() {
    return 0;
}

Paragraph

header

  • list

  • of

  • things

Another paragraph


For reference, this is what I see in the preview dialog:

2 Likes

This is a known issue and will be fixed when we migrate to common markdown :wink:

1 Like