react-md-editor
react-md-editor copied to clipboard
[BUG] numbered list can't render number in preview panel
as you can see in the pic, left I write numbered list like
- 1
- 2
- 3
but right doesn't render number. how can I fix this?
I am having the same issue
@zshnb try add below css to override it,
.wmde-markdown ol {
list-style: auto !important;
}
You should now see the numbering.
@h4ck4life @zshnb Is it because the default styles have been reset? Do I need to add the default styles to the CSS?