List markers not visible in Preview
Author: dinapolisCreated May 13, 2026Updated May 13, 2026
As per title, in the Preview window, unordered list markers are not displayed. Inspecting the code, I see the CSS that is the cause of the issue:
menu, ol, ul {
list-style: none
}Adding the following style fixes the issue.
#preview ul {
list-style: revert;
}Source: joemccann/dillinger