diff --git a/src/components/PostContent.vue b/src/components/PostContent.vue index ea1e3a3..be5ae97 100644 --- a/src/components/PostContent.vue +++ b/src/components/PostContent.vue @@ -92,6 +92,10 @@ function getContent(): string { } :deep(p), + :deep(blockquote), + :deep(ul), + :deep(ol), + :deep(hr), :deep(pre) { &:not(:last-child) { margin-bottom: 1em; @@ -112,6 +116,10 @@ function getContent(): string { list-style-position: inside; } + :deep(ul) { + list-style-type: disc; + } + :deep(.greentext) { color: $greentext-color; }