@@ -196,32 +196,32 @@ export default defineNuxtConfig({
196
196
197
197
Here is the list of available prose components:
198
198
199
- | Tag | Component | Description |
200
- | -- | -- | -- |
201
- | ` p ` | ` <ProseP> ` | Paragraph |
202
- | ` h1 ` | ` <ProseH1> ` | Heading 1 |
203
- | ` h2 ` | ` <ProseH2> ` | Heading 2 |
204
- | ` h3 ` | ` <ProseH3> ` | Heading 3 |
205
- | ` h4 ` | ` <ProseH4> ` | Heading 4 |
206
- | ` h5 ` | ` <ProseH5> ` | Heading 5 |
207
- | ` h6 ` | ` <ProseH6> ` | Heading 6 |
208
- | ` ul ` | ` <ProseUl> ` | Unordered List |
209
- | ` ol ` | ` <ProseOl> ` | Ordered List |
210
- | ` li ` | ` <ProseLi> ` | List Item |
211
- | ` blockquote ` | ` <ProseBlockquote> ` | Blockquote |
212
- | ` hr ` | ` <ProseHr> ` | Horizontal Rule |
213
- | ` pre ` | ` <ProsePre> ` | Preformatted Text |
214
- | ` code ` | ` <ProseCode> ` | Code Block |
215
- | ` table ` | ` <ProseTable> ` | Table |
216
- | ` thead ` | ` <ProseThead> ` | Table Head |
217
- | ` tbody ` | ` <ProseTbody> ` | Table Body |
218
- | ` tr ` | ` <ProseTr> ` | Table Row |
219
- | ` th ` | ` <ProseTh> ` | Table Header |
220
- | ` td ` | ` <ProseTd> ` | Table Data |
221
- | ` a ` | ` <ProseA> ` | Anchor Link |
222
- | ` img ` | ` <ProseImg> ` | Image |
223
- | ` em ` | ` <ProseEm> ` | Emphasis |
224
- | ` strong ` | ` <ProseStrong> ` | Strong |
199
+ | Tag | Component | Source | Description |
200
+ | -- | -- | -- | -- |
201
+ | ` p ` | ` <ProseP> ` | [ ProseP.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseP.vue ) | Paragraph |
202
+ | ` h1 ` | ` <ProseH1> ` | [ ProseH1.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseH1.vue ) | Heading 1 |
203
+ | ` h2 ` | ` <ProseH2> ` | [ ProseH2.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseH2.vue ) | Heading 2 |
204
+ | ` h3 ` | ` <ProseH3> ` | [ ProseH3.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseH3.vue ) | Heading 3 |
205
+ | ` h4 ` | ` <ProseH4> ` | [ ProseH4.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseH4.vue ) | Heading 4 |
206
+ | ` h5 ` | ` <ProseH5> ` | [ ProseH5.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseH5.vue ) | Heading 5 |
207
+ | ` h6 ` | ` <ProseH6> ` | [ ProseH6.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseH6.vue ) | Heading 6 |
208
+ | ` ul ` | ` <ProseUl> ` | [ ProseUl.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseUl.vue ) | Unordered List |
209
+ | ` ol ` | ` <ProseOl> ` | [ ProseOl.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseOl.vue ) | Ordered List |
210
+ | ` li ` | ` <ProseLi> ` | [ ProseLi.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseLi.vue ) | List Item |
211
+ | ` blockquote ` | ` <ProseBlockquote> ` | [ ProseBlockquote.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseBlockquote.vue ) | Blockquote |
212
+ | ` hr ` | ` <ProseHr> ` | [ ProseHr.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseHr.vue ) | Horizontal Rule |
213
+ | ` pre ` | ` <ProsePre> ` | [ ProsePre.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProsePre.vue ) | Preformatted Text |
214
+ | ` code ` | ` <ProseCode> ` | [ ProseCode.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseCode.vue ) | Code Block |
215
+ | ` table ` | ` <ProseTable> ` | [ ProseTable.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseTable.vue ) | Table |
216
+ | ` thead ` | ` <ProseThead> ` | [ ProseThead.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseThead.vue ) | Table Head |
217
+ | ` tbody ` | ` <ProseTbody> ` | [ ProseTbody.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseTbody.vue ) | Table Body |
218
+ | ` tr ` | ` <ProseTr> ` | [ ProseTr.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseTr.vue ) | Table Row |
219
+ | ` th ` | ` <ProseTh> ` | [ ProseTh.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseTh.vue ) | Table Header |
220
+ | ` td ` | ` <ProseTd> ` | [ ProseTd.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseTd.vue ) | Table Data |
221
+ | ` a ` | ` <ProseA> ` | [ ProseA.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseA.vue ) | Anchor Link |
222
+ | ` img ` | ` <ProseImg> ` | [ ProseImg.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseImg.vue ) | Image |
223
+ | ` em ` | ` <ProseEm> ` | [ ProseEm.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseEm.vue ) | Emphasis |
224
+ | ` strong ` | ` <ProseStrong> ` | [ ProseStrong.vue ] ( https://github.com/nuxt-modules/mdc/blob/main/src/runtime/components/prose/ProseStrong.vue ) | Strong |
225
225
226
226
## Configurations
227
227
0 commit comments