You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -63,6 +67,7 @@ You need to use HTML to write superscript and subscript text. Add `sup` or `sub`
63
67
64
68
## Links
65
69
70
+
Links connect different parts of your documentation and external resources, essential for user navigation and providing references.
66
71
To create a link, wrap the link text in brackets `[]()`.
67
72
68
73
::code-preview{class="[&>div]:*:my-0"}
@@ -77,9 +82,9 @@ To create a link, wrap the link text in brackets `[]()`.
77
82
78
83
::
79
84
80
-
### Links to other pages
85
+
### Internal links
81
86
82
-
Links to other pages of your documentation needs to be root-relative. For example, if you have a page called `getting-started/installation`, the link to that page should be `[Installation](/getting-started/installation)`.
87
+
For linking within your documentation, use root-relative paths like `/getting-started/installation`.
83
88
84
89
::code-preview{class="[&>div]:*:my-0"}
85
90
@@ -95,9 +100,11 @@ Links to other pages of your documentation needs to be root-relative. For exampl
95
100
96
101
## Lists
97
102
103
+
Organize related items in a structured, readable format. Markdown supports unordered, ordered, and nested lists for various content needs.
104
+
98
105
### Unordered
99
106
100
-
To create an unordered list, start each item with a `-`.
107
+
Use unordered lists for items without a specific sequence. Start each item with a `-` symbol.
101
108
102
109
::code-preview{class="[&>div]:*:my-0"}
103
110
@@ -117,7 +124,7 @@ To create an unordered list, start each item with a `-`.
117
124
118
125
### Ordered
119
126
120
-
To create an ordered list, start each item with a number.
127
+
Use ordered lists when item order matters, like steps in a process. Start each item with a number.
121
128
122
129
::code-preview{class="[&>div]:*:my-0"}
123
130
@@ -137,7 +144,7 @@ To create an ordered list, start each item with a number.
137
144
138
145
### Nested
139
146
140
-
To create a nested list, indent each item with four spaces.
147
+
Create hierarchical lists with sub-items for complex structures. Indent sub-items by four spaces for nesting.
141
148
142
149
::code-preview{class="[&>div]:*:my-0"}
143
150
@@ -159,7 +166,7 @@ To create a nested list, indent each item with four spaces.
159
166
160
167
## Tables
161
168
162
-
To create a table, use three or more hyphens (`---`) to separate each column.
169
+
Present structured data in rows and columns clearly. Tables are ideal for comparing data or listing properties.
@@ -183,9 +190,11 @@ To create a table, use three or more hyphens (`---`) to separate each column.
183
190
184
191
## Blockquotes
185
192
193
+
Highlight important quotations, citations, or emphasized text. Blockquotes visually distinguish quoted content.
194
+
186
195
### Singleline
187
196
188
-
To create a blockquote, add a `>` in front of a paragraph.
197
+
Single-line blockquotes are best for short, impactful quotes or citations that fit within a single line. To create a single-line blockquote, add a `>` in front of a paragraph. Ideal for short and impactful quotes.
189
198
190
199
::code-preview{class="[&>div]:*:my-0"}
191
200
@@ -201,6 +210,8 @@ To create a blockquote, add a `>` in front of a paragraph.
201
210
202
211
### Multiline
203
212
213
+
Multi-line blockquotes are suitable for longer quotes or when you need to include multiple paragraphs within a single quotation.
214
+
204
215
::code-preview{class="[&>div]:*:my-0"}
205
216
206
217
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
When writing a code-block, you can specify a filename that will be displayed on top of the code block. An icon will be automatically displayed based on the extension or the name.
50
+
Filenames help users understand the code's location and purpose within a project.
@@ -362,7 +364,8 @@ Learn more about the `code-tree` component.
362
364
363
365
### `CodePreview`
364
366
365
-
To display a code block with he's preview, use the `code-preview` component. Write the code to be previewed in a the `default` slot and the actual code in the `code` slot.
367
+
Use `code-preview` to show code output alongside the code. `code-preview` is ideal for interactive examples and demonstrating code results.
368
+
Write the code to be previewed in a the `default` slot and the actual code in the `code` slot.
@@ -394,7 +397,7 @@ To display a code block with he's preview, use the `code-preview` component. Wri
394
397
395
398
### `CodeCollapse`
396
399
397
-
Use the `code-collapse`component to display a long code block in a collapsible format.
400
+
Use `code-collapse`for long code blocks to keep pages clean. `code-collapse` allows users to expand code blocks only when needed, improving readability.
0 commit comments