fixed list rendering (#3273)

This commit is contained in:
sven
2024-08-07 10:50:16 -07:00
committed by GitHub
parent b30a2dd87a
commit 71ad979ffd

View File

@@ -40,3 +40,12 @@ code {
padding: 0;
background-color: inherit;
}
.markdown-body {
white-space: pre-wrap; /* Handles line breaks */
}
.markdown-body ul {
list-style-type: disc; /* Handles bullet points */
margin-left: 20px;
}