react-md-editor
react-md-editor copied to clipboard
Lists ::marker not showing
On a clean Vite project:

I faced the same issue
Looks like a global style conflict.
If you are using tailwind. It is because of the tailwind has overwrite the list-style CSS rule. (As in the image)
You have to revert that by adding this line to tailwind directives
@layer base {
ul,
ol {
list-style: revert;
}
}
You can use the following className on the parent markdown editor to revert the tailwind defaults for all children of the editor:
className="[&_dl]:list-[revert] [&_ol]:list-[revert] [&_ul]:list-[revert]"

