uiwjs / react-md-editor

A simple markdown editor with preview, implemented with React.js and TypeScript.
https://uiwjs.github.io/react-md-editor
MIT License
2.03k stars 149 forks source link

[BUG] numbered list can't render number in preview panel #627

Open zshnb opened 3 months ago

zshnb commented 3 months ago
image

as you can see in the pic, left I write numbered list like

  1. 1
  2. 2
  3. 3

but right doesn't render number. how can I fix this?

h4ck4life commented 3 months ago

I am having the same issue

h4ck4life commented 3 months ago

@zshnb try add below css to override it,

.wmde-markdown ol {
  list-style: auto !important;
}

You should now see the numbering.

jaywcjlove commented 3 months ago
image

@h4ck4life @zshnb Is it because the default styles have been reset? Do I need to add the default styles to the CSS?