Ordered list, 멀티라인/대체 인용구 문법을 추가하고 Prose 컴포넌트(리스트/인용/이미지/카드/임베드) 기본 스타일을 Thred 톤으로 통일했다. Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
371 B
Vue
19 lines
371 B
Vue
<script setup>
|
|
defineProps({
|
|
ordered: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<component
|
|
:is="ordered ? 'ol' : 'ul'"
|
|
class="prose-list my-6 space-y-2 pl-5 text-[15px] leading-8 text-[var(--site-text)] marker:text-[var(--site-muted)]"
|
|
:class="ordered ? 'list-decimal' : 'list-disc'"
|
|
>
|
|
<slot />
|
|
</component>
|
|
</template>
|