-
I tried to use
generates: <details open>
<summary>
<p>a summary for a details element</p> <!--The p is a block element and therefore jumps to a new line-->
</summary>
<p>content of a details element that is open</p>
</details> It looks like this:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I just found the export default defineNuxtConfig({
//...
content: {
//...
markdown: {
//...
tags: {
summary: 'MySummary',
},
},
},
//...
}) |
Beta Was this translation helpful? Give feedback.
I just found the
tags
section in thenuxt.config.ts
, which makes it easier: https://content.nuxtjs.org/api/configuration#tags