Fix notebook markdown list rendering (#198696)

Fixes #197097
This commit is contained in:
Matt Bierner 2023-11-20 09:23:14 -08:00 committed by GitHub
parent 69ddb3f3c6
commit 25ac184fe7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -282,6 +282,15 @@ export const activate: ActivationFunction<void> = (ctx) => {
line-height: 1.357em;
white-space: pre-wrap;
}
li p {
margin-bottom: 0.7em;
}
ul,
ol {
margin-bottom: 0.7em;
}
`;
const template = document.createElement('template');
template.classList.add('markdown-style');