Fix markdown parser when it renders <li> with <p>

This commit is contained in:
Deon George 2022-11-05 16:13:29 +11:00
parent 584b988093
commit a2b6d57e6a
1 changed files with 5 additions and 0 deletions

View File

@ -52,4 +52,9 @@ ol {
}
#content h5:not(.alert-heading) {
font-size: 0.9rem;
}
/* Fix markdown parser that renders <li><p> */
#content ul:not(.pagination) li p {
margin-left: -1ch;
}