Markdown
Markdown renders formatted text using markdown syntax. Use Text for simple, styled text content, and Markdown when you need rich formatting.
Key features:
- Rich formatting: Support for headings, bold, italic, lists, links, images, blockquotes, and code blocks
- Dynamic content: Use @{} binding expressions to inject variables and function results
- File loading: Load Markdown content from external files using the
dataproperty - HTML: Use a subset of HTML directly in Markdown
Acquiring content
You can specify Markdown content in these ways.
The content property
Render Markdown content that you calculate or get from other components.
The data property
Render Markdown content from an URL.
Nested text
Render Markdown content that you place directly in a Markdown component.
Whitespace and special characters
Whitespace is significant in Markdown, for example headers using the # syntax must begin in column 1.
These special XML characters are significant too.
< (less than) - Must be escaped as <
> (greater than) - Must be escaped as >
& (ampersand) - Must be escaped as &
" (double quote) - Must be escaped as " in attributes
' (single quote/apostrophe) - Must be escaped as ' in attributes
You can use a CDATA section to avoid having to escape these characters individually.
<Markdown>
<![CDATA[
]]>
</Markdown>
Or, as we have done in this page, you can use a code fence (a block delimited by triple backtics) to preserve them.
Supported elements
The Markdown component supports these basic elements.
- Heading
- Bold
- Italic
- Strikethrough
- Blockquote
- Ordered List
- Unordered List
- Code
- Horizontal Rule
- Link
- Image
- Table
See this markdown guide.
Native HTML
Markdown allows a subset of HTML. For example, while Markdown itself does not support rowspan and colspan in tables, you can use HTML directly.
<App>
<Markdown>
<![CDATA[
<table>
<thead>
<tr>
<th colspan="2">Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>43</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>57</td>
</tr>
</tbody>
</table>
]]>
</Markdown>
</App><App>
<Markdown>
<![CDATA[
<table>
<thead>
<tr>
<th colspan="2">Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>43</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>57</td>
</tr>
</tbody>
</table>
]]>
</Markdown>
</App>Binding Expressions
Our Markdown component is capable of evaluating binding expressions just as other XMLUI components.
Use the @{} syntax to wrap expressions that need to be evaluated.
Objects, functions and arrays will be stringified if you place them in Markdown.
Function calls are executed and their return values inlined as strings into markdown.
Behaviors
This component supports the following behaviors:
| Behavior | Properties |
|---|---|
| Animation | animation, animationOptions |
| Bookmark | bookmark, bookmarkLevel, bookmarkTitle, bookmarkOmitFromToc |
| Component Label | label, labelPosition, labelWidth, labelBreak, required, enabled, shrinkToLabel, style, readOnly |
| Publish/Subscribe | subscribeToTopic |
| Tooltip | tooltip, tooltipMarkdown, tooltipOptions |
| Styling Variant | variant |
Properties
breakMode
default: "normal"
This property controls how text breaks into multiple lines. normal uses standard word boundaries, word breaks long words to prevent overflow, anywhere breaks at any character, keep prevents word breaking, and hyphenate uses automatic hyphenation. When not specified, uses the default browser behavior or theme variables.
Available values:
| Value | Description |
|---|---|
normal | Uses standard word boundaries for breaking (default) |
word | Breaks long words when necessary to prevent overflow |
anywhere | Breaks at any character if needed to fit content |
keep | Prevents breaking within words entirely |
hyphenate | Uses automatic hyphenation when breaking words |
<App>
<VStack gap="16px">
<VStack gap="8px">
<Text variant="strong">breakMode="normal" (default)</Text>
<Markdown
width="200px"
backgroundColor="lightblue"
padding="8px"
breakMode="normal">
<![CDATA[
This text uses standardwordbreaking at natural boundaries like spaces and hyphens.
]]>
</Markdown>
</VStack>
<VStack gap="8px">
<Text variant="strong">breakMode="word"</Text>
<Markdown
width="200px"
backgroundColor="lightgreen"
padding="8px"
breakMode="word">
<![CDATA[
This text will breakverylongwordswhenneeded to prevent overflow while preserving readability.
]]>
</Markdown>
</VStack>
<VStack gap="8px">
<Text variant="strong">breakMode="anywhere"</Text>
<Markdown
width="200px"
backgroundColor="lightyellow"
padding="8px"
breakMode="anywhere">
<![CDATA[
Thistext willbreakanywhereif neededtofit thecontainer eveninthe middleofwords.
]]>
</Markdown>
</VStack>
</VStack>
</App><App>
<VStack gap="16px">
<VStack gap="8px">
<Text variant="strong">breakMode="normal" (default)</Text>
<Markdown
width="200px"
backgroundColor="lightblue"
padding="8px"
breakMode="normal">
<![CDATA[
This text uses standardwordbreaking at natural boundaries like spaces and hyphens.
]]>
</Markdown>
</VStack>
<VStack gap="8px">
<Text variant="strong">breakMode="word"</Text>
<Markdown
width="200px"
backgroundColor="lightgreen"
padding="8px"
breakMode="word">
<![CDATA[
This text will breakverylongwordswhenneeded to prevent overflow while preserving readability.
]]>
</Markdown>
</VStack>
<VStack gap="8px">
<Text variant="strong">breakMode="anywhere"</Text>
<Markdown
width="200px"
backgroundColor="lightyellow"
padding="8px"
breakMode="anywhere">
<![CDATA[
Thistext willbreakanywhereif neededtofit thecontainer eveninthe middleofwords.
]]>
</Markdown>
</VStack>
</VStack>
</App>content
This property sets the markdown content to display. Alternatively, you can nest the markdown content as a child in a CDATA section. In neither this property value nor any child is defined, empty content is displayed.
Use this property when the text you provide is not static but a result of calculations (you assemble the text or get it from other components).
grayscale
This boolean property specifies whether images should be displayed in grayscale. If set to true, all images within the markdown will be rendered in grayscale.
openLinkInNewTab
This boolean property specifies whether links should open in a new tab. If set to true, all links within the markdown will open in a new tab with target="_blank". Links that explicitly specify their own target using the | target=... syntax will override this setting.
overflowMode
default: "not specified"
This property controls how text overflow is handled. none prevents wrapping and shows no overflow indicator, ellipsis shows ellipses when text is truncated, scroll forces single line with horizontal scrolling, and flow allows multi-line wrapping with vertical scrolling when needed. When not specified, uses the default text behavior.
Available values:
| Value | Description |
|---|---|
none | No wrapping, text stays on a single line with no overflow indicator |
ellipsis | Truncates with an ellipsis |
scroll | Forces single line with horizontal scrolling when content overflows |
flow | Allows text to wrap into multiple lines with vertical scrolling when container height is constrained |
<App>
<VStack gap="16px">
<VStack gap="8px">
<Text variant="strong">overflowMode="flow"</Text>
<Markdown
width="300px"
backgroundColor="lightblue"
padding="8px"
overflowMode="flow">
<, all wrapping as needed.
When you have comma-separated lists like: [reference-1](url1), [reference-2](url2), [reference-3](url3), [reference-4](url4), they will wrap appropriately.
]]>
</Markdown>
</VStack>
<VStack gap="8px">
<Text variant="strong">overflowMode="scroll"</Text>
<Markdown
width="300px"
backgroundColor="lightgreen"
padding="8px"
overflowMode="scroll">
<![CDATA[
This text stays on a single line with horizontal scrolling when content overflows the container width.
]]>
</Markdown>
</VStack>
<VStack gap="8px">
<Text variant="strong">overflowMode="ellipsis"</Text>
<Markdown
width="300px"
backgroundColor="lightyellow"
padding="8px"
overflowMode="ellipsis">
<![CDATA[
This text truncates with ellipsis when it exceeds the container width.
]]>
</Markdown>
</VStack>
</VStack>
</App><App>
<VStack gap="16px">
<VStack gap="8px">
<Text variant="strong">overflowMode="flow"</Text>
<Markdown
width="300px"
backgroundColor="lightblue"
padding="8px"
overflowMode="flow">
<, all wrapping as needed.
When you have comma-separated lists like: [reference-1](url1), [reference-2](url2), [reference-3](url3), [reference-4](url4), they will wrap appropriately.
]]>
</Markdown>
</VStack>
<VStack gap="8px">
<Text variant="strong">overflowMode="scroll"</Text>
<Markdown
width="300px"
backgroundColor="lightgreen"
padding="8px"
overflowMode="scroll">
<![CDATA[
This text stays on a single line with horizontal scrolling when content overflows the container width.
]]>
</Markdown>
</VStack>
<VStack gap="8px">
<Text variant="strong">overflowMode="ellipsis"</Text>
<Markdown
width="300px"
backgroundColor="lightyellow"
padding="8px"
overflowMode="ellipsis">
<![CDATA[
This text truncates with ellipsis when it exceeds the container width.
]]>
</Markdown>
</VStack>
</VStack>
</App>For comma-separated markdown links (common in reference lists), use overflowMode="flow" with optional breakMode="word":
<App>
<Markdown
width="400px"
backgroundColor="lavender"
padding="8px"
overflowMode="flow"
breakMode="word">
<, [PR #456](https://example.com/pr/456), [issue #789](https://example.com/issue/789), [PR #1011](https://example.com/pr/1011), [issue #1213](https://example.com/issue/1213)
]]>
</Markdown>
</App><App>
<Markdown
width="400px"
backgroundColor="lavender"
padding="8px"
overflowMode="flow"
breakMode="word">
<, [PR #456](https://example.com/pr/456), [issue #789](https://example.com/issue/789), [PR #1011](https://example.com/pr/1011), [issue #1213](https://example.com/issue/1213)
]]>
</Markdown>
</App>removeBr
default: false
This boolean property specifies whether <br> (line break) elements should be omitted from the rendered output. When set to true, <br/> tags in the markdown content will not be rendered. When false (default), <br/> tags render as horizontal bars.
removeIndents
default: true
This boolean property specifies whether leading indents should be removed from the markdown content. If set to true, the shortest indent found at the start of the content lines is removed from the beginning of every line.
<App layout="horizontal-sticky" padding="1rem">
<Markdown removeIndents="true">
<![CDATA[
# My Adventure in Markdown Land
## The Beginning
In the bustling city of Markdownville, I embarked on a journey to
discover the secrets of Markdown. My adventure started in the heart
of the city, where the first rule of Markdown was inscribed in stone.
]]>
</Markdown>
</App><App layout="horizontal-sticky" padding="1rem">
<Markdown removeIndents="true">
<![CDATA[
# My Adventure in Markdown Land
## The Beginning
In the bustling city of Markdownville, I embarked on a journey to
discover the secrets of Markdown. My adventure started in the heart
of the city, where the first rule of Markdown was inscribed in stone.
]]>
</Markdown>
</App>showHeadingAnchors
This boolean property specifies whether heading anchors should be displayed. If set to true, heading anchors will be displayed on hover next to headings.
If this property is not set, the engine checks if showHeadingAnchors flag is turned on in the global configuration (in the appGlobals configuration object) and displays the heading anchor accordingly.
truncateLinks
This boolean property specifies whether long links should be truncated with ellipsis. If set to true, links will be displayed with a maximum width and overflow will be hidden with text-overflow: ellipsis.
<App>
<Markdown truncateLinks="true">
<![CDATA[
This is a long link truncated for display: https://playground.xmlui.org/#/playground/#H4sIAAAAAAAAE1VSS2vjMBD%2BK2LIYRdsy7u0F%2BEGlvbYPSXspQmLYo0dUXskpHHqNvi%2FL1Lchd7m9T1mmCtE1mT04AhBXUF7DwqaX95vDyRE82wjC6NZPxzgzOyjklJ7W3E3VL27VNOrHCyhHJ1BydMJZWTNUzxAxgshmj3OvL1uLONYkR5xUWLNEnKXxzG%2B1MfqBt3hBYPl9yeMbbCeraOlkZklW5LJ0%2FZAjby5hAJaN3pHSBxBvRxTTp3t0z5JEBQ8OzKOxH46obgpQgF8xhET4grWgIJ5HCZbGtemJs6MZOJnOYsMLoCCTQ5KH%2Byow3t5X9efXH90iEm0c8Q7%2B5GEf9z5GQo46fa1D24i85jBaZuydSaNhP70rQtuFCtxnEKnWyx%2F1rUIohcnIUVd3X2HArw2xlL%2FBb6JPk3Xf%2B9hWY7LUoDLN7s5sTOaffIGqtNDxALim%2FYezf%2FcB7xYfPud2daaCxaJdaIBBWcX7Icj1gMUoFu2F1wpv55sbeVPgsH2Z85XI0ZiUPm1luUfOQ4%2BonECAAA%3D
]]>
</Markdown>
</App><App>
<Markdown truncateLinks="true">
<![CDATA[
This is a long link truncated for display: https://playground.xmlui.org/#/playground/#H4sIAAAAAAAAE1VSS2vjMBD%2BK2LIYRdsy7u0F%2BEGlvbYPSXspQmLYo0dUXskpHHqNvi%2FL1Lchd7m9T1mmCtE1mT04AhBXUF7DwqaX95vDyRE82wjC6NZPxzgzOyjklJ7W3E3VL27VNOrHCyhHJ1BydMJZWTNUzxAxgshmj3OvL1uLONYkR5xUWLNEnKXxzG%2B1MfqBt3hBYPl9yeMbbCeraOlkZklW5LJ0%2FZAjby5hAJaN3pHSBxBvRxTTp3t0z5JEBQ8OzKOxH46obgpQgF8xhET4grWgIJ5HCZbGtemJs6MZOJnOYsMLoCCTQ5KH%2Byow3t5X9efXH90iEm0c8Q7%2B5GEf9z5GQo46fa1D24i85jBaZuydSaNhP70rQtuFCtxnEKnWyx%2F1rUIohcnIUVd3X2HArw2xlL%2FBb6JPk3Xf%2B9hWY7LUoDLN7s5sTOaffIGqtNDxALim%2FYezf%2FcB7xYfPud2daaCxaJdaIBBWcX7Icj1gMUoFu2F1wpv55sbeVPgsH2Z85XI0ZiUPm1luUfOQ4%2BonECAAA%3D
]]>
</Markdown>
</App>Events
This component does not have any events.
Exposed Methods
This component does not expose any methods.
Styling
The component itself cannot be styled, but the components that render the final text have customizable style variables.
Text
Heading
Link
Image
Checkbox
Theme Variables
| Variable | Default Value (Light) | Default Value (Dark) |
|---|---|---|
| backgroundColor-Admonition-markdown | $color-surface-100 | $color-primary-200 |
| backgroundColor-Admonition-markdown-card | $color-surface-50 | $color-surface-50 |
| backgroundColor-Admonition-markdown-danger | $color-danger-100 | $color-danger-100 |
| backgroundColor-Admonition-markdown-def | $color-surface-50 | $color-surface-50 |
| backgroundColor-Admonition-markdown-feat | $color-surface-50 | $color-surface-50 |
| backgroundColor-Admonition-markdown-info | none | none |
| backgroundColor-Admonition-markdown-note | none | none |
| backgroundColor-Admonition-markdown-tip | none | none |
| backgroundColor-Admonition-markdown-warning | $color-warn-100 | $color-warn-100 |
| backgroundColor-Blockquote-markdown | $color-surface-100 | $color-surface-50 |
| backgroundColor-even-Tr-markdown | none | none |
| backgroundColor-Markdown | none | none |
| backgroundColor-Table-markdown | none | none |
| backgroundColor-Tbody-markdown | none | none |
| backgroundColor-Td-markdown | none | none |
| backgroundColor-Text | none | none |
| backgroundColor-Tfoot-markdown | none | none |
| backgroundColor-Th-markdown | none | none |
| backgroundColor-Th-markdown--hover | none | none |
| backgroundColor-Thead-markdown | $color-surface-100 | $color-surface-100 |
| backgroundColor-Tr-markdown | none | none |
| backgroundColor-Tr-markdown--hover | none | none |
| border-Admonition-markdown | 0px solid $color-primary-300 | 0px solid $color-primary-300 |
| border-Admonition-markdown-card | 1px solid $color-surface-200 | 1px solid $color-surface-200 |
| border-Admonition-markdown-feat | 1px solid $color-surface-200 | 1px solid $color-surface-200 |
| border-Blockquote-markdown | none | none |
| border-Details-markdown | none | none |
| border-HtmlThead | none | none |
| border-Li-markdown | none | none |
| border-Ol-markdown | none | none |
| border-Table-markdown | 1px solid $borderColor | 1px solid $borderColor |
| border-Td-markdown | none | none |
| border-Th-markdown | none | none |
| border-Tr-markdown | 1px solid $borderColor | 1px solid $borderColor |
| border-Ul-markdown | none | none |
| borderBottom-Admonition-markdown | none | none |
| borderBottom-Blockquote-markdown | none | none |
| borderBottom-Details-markdown | none | none |
| borderBottom-HtmlThead | none | none |
| borderBottom-Li-markdown | none | none |
| borderBottom-Ol-markdown | none | none |
| borderBottom-Table-markdown | none | none |
| borderBottom-Td-markdown | none | none |
| borderBottom-Th-markdown | none | none |
| borderBottom-Tr-markdown | none | none |
| borderBottom-Ul-markdown | none | none |
| borderBottomColor-Admonition-markdown | none | none |
| borderBottomColor-Blockquote-markdown | none | none |
| borderBottomColor-Details-markdown | none | none |
| borderBottomColor-HtmlThead | none | none |
| borderBottomColor-Li-markdown | none | none |
| borderBottomColor-Ol-markdown | none | none |
| borderBottomColor-Table-markdown | none | none |
| borderBottomColor-Td-markdown | none | none |
| borderBottomColor-Th-markdown | none | none |
| borderBottomColor-Tr-markdown | none | none |
| borderBottomColor-Ul-markdown | none | none |
| borderBottomStyle-Admonition-markdown | none | none |
| borderBottomStyle-Blockquote-markdown | none | none |
| borderBottomStyle-Details-markdown | none | none |
| borderBottomStyle-HtmlThead | none | none |
| borderBottomStyle-Li-markdown | none | none |
| borderBottomStyle-Ol-markdown | none | none |
| borderBottomStyle-Table-markdown | none | none |
| borderBottomStyle-Td-markdown | none | none |
| borderBottomStyle-Th-markdown | none | none |
| borderBottomStyle-Tr-markdown | none | none |
| borderBottomStyle-Ul-markdown | none | none |
| borderBottomWidth-Admonition-markdown | none | none |
| borderBottomWidth-Blockquote-markdown | none | none |
| borderBottomWidth-Details-markdown | none | none |
| borderBottomWidth-HtmlThead | none | none |
| borderBottomWidth-Li-markdown | none | none |
| borderBottomWidth-Ol-markdown | none | none |
| borderBottomWidth-Table-markdown | none | none |
| borderBottomWidth-Td-markdown | none | none |
| borderBottomWidth-Th-markdown | none | none |
| borderBottomWidth-Tr-markdown | none | none |
| borderBottomWidth-Ul-markdown | none | none |
| borderColor-Admonition-markdown | none | none |
| borderColor-Admonition-markdown-card | none | none |
| borderColor-Admonition-markdown-danger | $color-danger-300 | $color-danger-300 |
| borderColor-Admonition-markdown-def | none | none |
| borderColor-Admonition-markdown-feat | none | none |
| borderColor-Admonition-markdown-info | none | none |
| borderColor-Admonition-markdown-note | none | none |
| borderColor-Admonition-markdown-tip | none | none |
| borderColor-Admonition-markdown-warning | $color-warn-300 | $color-warn-300 |
| borderColor-Blockquote-markdown | none | none |
| borderColor-Details-markdown | none | none |
| borderColor-HorizontalRule-markdown | $borderColor | $borderColor |
| borderColor-HtmlThead | none | none |
| borderColor-Li-markdown | none | none |
| borderColor-Ol-markdown | none | none |
| borderColor-Table-markdown | none | none |
| borderColor-Td-markdown | none | none |
| borderColor-Th-markdown | none | none |
| borderColor-Tr-markdown | none | none |
| borderColor-Ul-markdown | none | none |
| borderEndEndRadius-Admonition-markdown | none | none |
| borderEndEndRadius-Blockquote-markdown | none | none |
| borderEndEndRadius-Details-markdown | none | none |
| borderEndEndRadius-HtmlThead | none | none |
| borderEndEndRadius-Li-markdown | none | none |
| borderEndEndRadius-Ol-markdown | none | none |
| borderEndEndRadius-Table-markdown | none | none |
| borderEndEndRadius-Td-markdown | none | none |
| borderEndEndRadius-Th-markdown | none | none |
| borderEndEndRadius-Tr-markdown | none | none |
| borderEndEndRadius-Ul-markdown | none | none |
| borderEndStartRadius-Admonition-markdown | none | none |
| borderEndStartRadius-Blockquote-markdown | none | none |
| borderEndStartRadius-Details-markdown | none | none |
| borderEndStartRadius-HtmlThead | none | none |
| borderEndStartRadius-Li-markdown | none | none |
| borderEndStartRadius-Ol-markdown | none | none |
| borderEndStartRadius-Table-markdown | none | none |
| borderEndStartRadius-Td-markdown | none | none |
| borderEndStartRadius-Th-markdown | none | none |
| borderEndStartRadius-Tr-markdown | none | none |
| borderEndStartRadius-Ul-markdown | none | none |
| borderHorizontal-Admonition-markdown | none | none |
| borderHorizontal-Blockquote-markdown | none | none |
| borderHorizontal-Details-markdown | none | none |
| borderHorizontal-HtmlThead | none | none |
| borderHorizontal-Li-markdown | none | none |
| borderHorizontal-Ol-markdown | none | none |
| borderHorizontal-Table-markdown | none | none |
| borderHorizontal-Td-markdown | none | none |
| borderHorizontal-Th-markdown | none | none |
| borderHorizontal-Tr-markdown | none | none |
| borderHorizontal-Ul-markdown | none | none |
| borderHorizontalColor-Admonition-markdown | none | none |
| borderHorizontalColor-Blockquote-markdown | none | none |
| borderHorizontalColor-Details-markdown | none | none |
| borderHorizontalColor-HtmlThead | none | none |
| borderHorizontalColor-Li-markdown | none | none |
| borderHorizontalColor-Ol-markdown | none | none |
| borderHorizontalColor-Table-markdown | none | none |
| borderHorizontalColor-Td-markdown | none | none |
| borderHorizontalColor-Th-markdown | none | none |
| borderHorizontalColor-Tr-markdown | none | none |
| borderHorizontalColor-Ul-markdown | none | none |
| borderHorizontalStyle-Admonition-markdown | none | none |
| borderHorizontalStyle-Blockquote-markdown | none | none |
| borderHorizontalStyle-Details-markdown | none | none |
| borderHorizontalStyle-HtmlThead | none | none |
| borderHorizontalStyle-Li-markdown | none | none |
| borderHorizontalStyle-Ol-markdown | none | none |
| borderHorizontalStyle-Table-markdown | none | none |
| borderHorizontalStyle-Td-markdown | none | none |
| borderHorizontalStyle-Th-markdown | none | none |
| borderHorizontalStyle-Tr-markdown | none | none |
| borderHorizontalStyle-Ul-markdown | none | none |
| borderHorizontalWidth-Admonition-markdown | none | none |
| borderHorizontalWidth-Blockquote-markdown | none | none |
| borderHorizontalWidth-Details-markdown | none | none |
| borderHorizontalWidth-HtmlThead | none | none |
| borderHorizontalWidth-Li-markdown | none | none |
| borderHorizontalWidth-Ol-markdown | none | none |
| borderHorizontalWidth-Table-markdown | none | none |
| borderHorizontalWidth-Td-markdown | none | none |
| borderHorizontalWidth-Th-markdown | none | none |
| borderHorizontalWidth-Tr-markdown | none | none |
| borderHorizontalWidth-Ul-markdown | none | none |
| borderLeft-Admonition-markdown | none | none |
| borderLeft-Blockquote-markdown | none | none |
| borderLeft-Details-markdown | none | none |
| borderLeft-HtmlThead | none | none |
| borderLeft-Li-markdown | none | none |
| borderLeft-Ol-markdown | none | none |
| borderLeft-Table-markdown | none | none |
| borderLeft-Td-markdown | none | none |
| borderLeft-Th-markdown | none | none |
| borderLeft-Tr-markdown | none | none |
| borderLeft-Ul-markdown | none | none |
| borderLeftColor-Admonition-markdown | none | none |
| borderLeftColor-Blockquote-markdown | none | none |
| borderLeftColor-Details-markdown | none | none |
| borderLeftColor-HtmlThead | none | none |
| borderLeftColor-Li-markdown | none | none |
| borderLeftColor-Ol-markdown | none | none |
| borderLeftColor-Table-markdown | none | none |
| borderLeftColor-Td-markdown | none | none |
| borderLeftColor-Th-markdown | none | none |
| borderLeftColor-Tr-markdown | none | none |
| borderLeftColor-Ul-markdown | none | none |
| borderLeftStyle-Admonition-markdown | none | none |
| borderLeftStyle-Blockquote-markdown | none | none |
| borderLeftStyle-Details-markdown | none | none |
| borderLeftStyle-HtmlThead | none | none |
| borderLeftStyle-Li-markdown | none | none |
| borderLeftStyle-Ol-markdown | none | none |
| borderLeftStyle-Table-markdown | none | none |
| borderLeftStyle-Td-markdown | none | none |
| borderLeftStyle-Th-markdown | none | none |
| borderLeftStyle-Tr-markdown | none | none |
| borderLeftStyle-Ul-markdown | none | none |
| borderLeftWidth-Admonition-markdown | none | none |
| borderLeftWidth-Blockquote-markdown | none | none |
| borderLeftWidth-Details-markdown | none | none |
| borderLeftWidth-HtmlThead | none | none |
| borderLeftWidth-Li-markdown | none | none |
| borderLeftWidth-Ol-markdown | none | none |
| borderLeftWidth-Table-markdown | none | none |
| borderLeftWidth-Td-markdown | none | none |
| borderLeftWidth-Th-markdown | none | none |
| borderLeftWidth-Tr-markdown | none | none |
| borderLeftWidth-Ul-markdown | none | none |
| borderRadius-Admonition-markdown | $space-2 | $space-2 |
| borderRadius-Blockquote-markdown | none | none |
| borderRight-Admonition-markdown | none | none |
| borderRight-Blockquote-markdown | none | none |
| borderRight-Details-markdown | none | none |
| borderRight-HtmlThead | none | none |
| borderRight-Li-markdown | none | none |
| borderRight-Ol-markdown | none | none |
| borderRight-Table-markdown | none | none |
| borderRight-Td-markdown | none | none |
| borderRight-Th-markdown | none | none |
| borderRight-Tr-markdown | none | none |
| borderRight-Ul-markdown | none | none |
| borderRightColor-Admonition-markdown | none | none |
| borderRightColor-Blockquote-markdown | none | none |
| borderRightColor-Details-markdown | none | none |
| borderRightColor-HtmlThead | none | none |
| borderRightColor-Li-markdown | none | none |
| borderRightColor-Ol-markdown | none | none |
| borderRightColor-Table-markdown | none | none |
| borderRightColor-Td-markdown | none | none |
| borderRightColor-Th-markdown | none | none |
| borderRightColor-Tr-markdown | none | none |
| borderRightColor-Ul-markdown | none | none |
| borderRightStyle-Admonition-markdown | none | none |
| borderRightStyle-Blockquote-markdown | none | none |
| borderRightStyle-Details-markdown | none | none |
| borderRightStyle-HtmlThead | none | none |
| borderRightStyle-Li-markdown | none | none |
| borderRightStyle-Ol-markdown | none | none |
| borderRightStyle-Table-markdown | none | none |
| borderRightStyle-Td-markdown | none | none |
| borderRightStyle-Th-markdown | none | none |
| borderRightStyle-Tr-markdown | none | none |
| borderRightStyle-Ul-markdown | none | none |
| borderRightWidth-Admonition-markdown | none | none |
| borderRightWidth-Blockquote-markdown | none | none |
| borderRightWidth-Details-markdown | none | none |
| borderRightWidth-HtmlThead | none | none |
| borderRightWidth-Li-markdown | none | none |
| borderRightWidth-Ol-markdown | none | none |
| borderRightWidth-Table-markdown | none | none |
| borderRightWidth-Td-markdown | none | none |
| borderRightWidth-Th-markdown | none | none |
| borderRightWidth-Tr-markdown | none | none |
| borderRightWidth-Ul-markdown | none | none |
| borderStartEndRadius-Admonition-markdown | none | none |
| borderStartEndRadius-Blockquote-markdown | none | none |
| borderStartEndRadius-Details-markdown | none | none |
| borderStartEndRadius-HtmlThead | none | none |
| borderStartEndRadius-Li-markdown | none | none |
| borderStartEndRadius-Ol-markdown | none | none |
| borderStartEndRadius-Table-markdown | none | none |
| borderStartEndRadius-Td-markdown | none | none |
| borderStartEndRadius-Th-markdown | none | none |
| borderStartEndRadius-Tr-markdown | none | none |
| borderStartEndRadius-Ul-markdown | none | none |
| borderStartStartRadius-Admonition-markdown | none | none |
| borderStartStartRadius-Blockquote-markdown | none | none |
| borderStartStartRadius-Details-markdown | none | none |
| borderStartStartRadius-HtmlThead | none | none |
| borderStartStartRadius-Li-markdown | none | none |
| borderStartStartRadius-Ol-markdown | none | none |
| borderStartStartRadius-Table-markdown | none | none |
| borderStartStartRadius-Td-markdown | none | none |
| borderStartStartRadius-Th-markdown | none | none |
| borderStartStartRadius-Tr-markdown | none | none |
| borderStartStartRadius-Ul-markdown | none | none |
| borderStyle-Admonition-markdown | none | none |
| borderStyle-Admonition-markdown-card | none | none |
| borderStyle-Admonition-markdown-danger | none | none |
| borderStyle-Admonition-markdown-def | none | none |
| borderStyle-Admonition-markdown-feat | none | none |
| borderStyle-Admonition-markdown-info | none | none |
| borderStyle-Admonition-markdown-note | none | none |
| borderStyle-Admonition-markdown-tip | none | none |
| borderStyle-Admonition-markdown-warning | none | none |
| borderStyle-Blockquote-markdown | none | none |
| borderStyle-Details-markdown | none | none |
| borderStyle-HorizontalRule-markdown | solid | solid |
| borderStyle-HtmlThead | none | none |
| borderStyle-Li-markdown | none | none |
| borderStyle-Ol-markdown | none | none |
| borderStyle-Table-markdown | none | none |
| borderStyle-Td-markdown | none | none |
| borderStyle-Th-markdown | none | none |
| borderStyle-Tr-markdown | none | none |
| borderStyle-Ul-markdown | none | none |
| borderTop-Admonition-markdown | none | none |
| borderTop-Blockquote-markdown | none | none |
| borderTop-Details-markdown | none | none |
| borderTop-HtmlThead | none | none |
| borderTop-Li-markdown | none | none |
| borderTop-Ol-markdown | none | none |
| borderTop-Table-markdown | none | none |
| borderTop-Td-markdown | none | none |
| borderTop-Th-markdown | none | none |
| borderTop-Tr-markdown | none | none |
| borderTop-Ul-markdown | none | none |
| borderTopColor-Admonition-markdown | none | none |
| borderTopColor-Blockquote-markdown | none | none |
| borderTopColor-Details-markdown | none | none |
| borderTopColor-HtmlThead | none | none |
| borderTopColor-Li-markdown | none | none |
| borderTopColor-Ol-markdown | none | none |
| borderTopColor-Table-markdown | none | none |
| borderTopColor-Td-markdown | none | none |
| borderTopColor-Th-markdown | none | none |
| borderTopColor-Tr-markdown | none | none |
| borderTopColor-Ul-markdown | none | none |
| borderTopStyle-Admonition-markdown | none | none |
| borderTopStyle-Blockquote-markdown | none | none |
| borderTopStyle-Details-markdown | none | none |
| borderTopStyle-HtmlThead | none | none |
| borderTopStyle-Li-markdown | none | none |
| borderTopStyle-Ol-markdown | none | none |
| borderTopStyle-Table-markdown | none | none |
| borderTopStyle-Td-markdown | none | none |
| borderTopStyle-Th-markdown | none | none |
| borderTopStyle-Tr-markdown | none | none |
| borderTopStyle-Ul-markdown | none | none |
| borderTopWidth-Admonition-markdown | none | none |
| borderTopWidth-Blockquote-markdown | none | none |
| borderTopWidth-Details-markdown | none | none |
| borderTopWidth-HtmlThead | none | none |
| borderTopWidth-Li-markdown | none | none |
| borderTopWidth-Ol-markdown | none | none |
| borderTopWidth-Table-markdown | none | none |
| borderTopWidth-Td-markdown | none | none |
| borderTopWidth-Th-markdown | none | none |
| borderTopWidth-Tr-markdown | none | none |
| borderTopWidth-Ul-markdown | none | none |
| borderVertical-Admonition-markdown | none | none |
| borderVertical-Blockquote-markdown | none | none |
| borderVertical-Details-markdown | none | none |
| borderVertical-HtmlThead | none | none |
| borderVertical-Li-markdown | none | none |
| borderVertical-Ol-markdown | none | none |
| borderVertical-Table-markdown | none | none |
| borderVertical-Td-markdown | none | none |
| borderVertical-Th-markdown | none | none |
| borderVertical-Tr-markdown | none | none |
| borderVertical-Ul-markdown | none | none |
| borderVerticalColor-Admonition-markdown | none | none |
| borderVerticalColor-Blockquote-markdown | none | none |
| borderVerticalColor-Details-markdown | none | none |
| borderVerticalColor-HtmlThead | none | none |
| borderVerticalColor-Li-markdown | none | none |
| borderVerticalColor-Ol-markdown | none | none |
| borderVerticalColor-Table-markdown | none | none |
| borderVerticalColor-Td-markdown | none | none |
| borderVerticalColor-Th-markdown | none | none |
| borderVerticalColor-Tr-markdown | none | none |
| borderVerticalColor-Ul-markdown | none | none |
| borderVerticalStyle-Admonition-markdown | none | none |
| borderVerticalStyle-Blockquote-markdown | none | none |
| borderVerticalStyle-Details-markdown | none | none |
| borderVerticalStyle-HtmlThead | none | none |
| borderVerticalStyle-Li-markdown | none | none |
| borderVerticalStyle-Ol-markdown | none | none |
| borderVerticalStyle-Table-markdown | none | none |
| borderVerticalStyle-Td-markdown | none | none |
| borderVerticalStyle-Th-markdown | none | none |
| borderVerticalStyle-Tr-markdown | none | none |
| borderVerticalStyle-Ul-markdown | none | none |
| borderVerticalWidth-Admonition-markdown | none | none |
| borderVerticalWidth-Blockquote-markdown | none | none |
| borderVerticalWidth-Details-markdown | none | none |
| borderVerticalWidth-HtmlThead | none | none |
| borderVerticalWidth-Li-markdown | none | none |
| borderVerticalWidth-Ol-markdown | none | none |
| borderVerticalWidth-Table-markdown | none | none |
| borderVerticalWidth-Td-markdown | none | none |
| borderVerticalWidth-Th-markdown | none | none |
| borderVerticalWidth-Tr-markdown | none | none |
| borderVerticalWidth-Ul-markdown | none | none |
| borderWidth-Admonition-markdown | none | none |
| borderWidth-Admonition-markdown-card | none | none |
| borderWidth-Admonition-markdown-danger | none | none |
| borderWidth-Admonition-markdown-def | none | none |
| borderWidth-Admonition-markdown-feat | none | none |
| borderWidth-Admonition-markdown-info | none | none |
| borderWidth-Admonition-markdown-note | none | none |
| borderWidth-Admonition-markdown-tip | none | none |
| borderWidth-Admonition-markdown-warning | none | none |
| borderWidth-Blockquote-markdown | none | none |
| borderWidth-Details-markdown | none | none |
| borderWidth-HorizontalRule-markdown | 2px | 2px |
| borderWidth-HtmlThead | none | none |
| borderWidth-Li-markdown | none | none |
| borderWidth-Ol-markdown | none | none |
| borderWidth-Table-markdown | none | none |
| borderWidth-Td-markdown | none | none |
| borderWidth-Th-markdown | none | none |
| borderWidth-Tr-markdown | none | none |
| borderWidth-Ul-markdown | none | none |
| color-accent-Blockquote-markdown | $color-surface-500 | $color-surface-500 |
| direction-Text | none | none |
| fontFamily-Table-markdown | none | none |
| fontFamily-Text | none | none |
| fontSize-H1-markdown | none | none |
| fontSize-H2-markdown | none | none |
| fontSize-H3-markdown | none | none |
| fontSize-H4-markdown | none | none |
| fontSize-H5-markdown | none | none |
| fontSize-H6-markdown | none | none |
| fontSize-Table-markdown | none | none |
| fontSize-Td-markdown | none | none |
| fontSize-Text | none | none |
| fontSize-Text-markdown | $fontSize | $fontSize |
| fontSize-Th-markdown | $fontSize-sm | $fontSize-sm |
| fontSize-Thead-markdown | none | none |
| fontSize-Tr-markdown | none | none |
| fontStretch-Text | none | none |
| fontStyle-Text | none | none |
| fontVariant-Text | none | none |
| fontWeight-Table-markdown | none | none |
| fontWeight-Td-markdown | none | none |
| fontWeight-Text | none | none |
| fontWeight-Text-markdown | fontWeight-Text | fontWeight-Text |
| fontWeight-Th-markdown | none | none |
| fontWeight-Thead-markdown | $fontWeight-bold | $fontWeight-bold |
| fontWeight-Tr-markdown | none | none |
| letterSpacing-Text | none | none |
| lineBreak-Text | none | none |
| lineHeight-Text | none | none |
| listStyleType-Li-markdown | none | none |
| marginBottom-Admonition-markdown | $space-6 | $space-6 |
| marginBottom-Blockquote-markdown | $space-6 | $space-6 |
| marginBottom-Details-markdown | none | none |
| marginBottom-H1-markdown | $space-6 | $space-6 |
| marginBottom-H2-markdown | $space-5 | $space-5 |
| marginBottom-H3-markdown | $space-4 | $space-4 |
| marginBottom-H4-markdown | $space-3 | $space-3 |
| marginBottom-H5-markdown | $space-3 | $space-3 |
| marginBottom-H6-markdown | $space-2_5 | $space-2_5 |
| marginBottom-Image-markdown | $space-6 | $space-6 |
| marginBottom-Li-markdown | $space-2_5 | $space-2_5 |
| marginBottom-Ol-markdown | $space-5 | $space-5 |
| marginBottom-Table-markdown | none | none |
| marginBottom-Text-markdown | $space-2 | $space-2 |
| marginBottom-Ul-markdown | $space-5 | $space-5 |
| marginBottom-Video-markdown | none | none |
| marginLeft-content-Admonition-markdown | $space-1_5 | $space-1_5 |
| marginLeft-Image-markdown | $space-0 | $space-0 |
| marginLeft-Li-markdown | none | none |
| marginLeft-Ol-markdown | $space-8 | $space-8 |
| marginLeft-Text-markdown | none | none |
| marginLeft-Ul-markdown | $space-8 | $space-8 |
| marginRight-Image-markdown | $space-0 | $space-0 |
| marginRight-Ol-markdown | $space-0 | $space-0 |
| marginRight-Text-markdown | none | none |
| marginRight-Ul-markdown | $space-0 | $space-0 |
| marginTop-Admonition-markdown | $space-6 | $space-6 |
| marginTop-Blockquote-markdown | $space-6 | $space-6 |
| marginTop-Details-markdown | none | none |
| marginTop-H1-markdown | $space-4 | $space-4 |
| marginTop-H2-markdown | $space-8 | $space-8 |
| marginTop-H3-markdown | $space-7 | $space-7 |
| marginTop-H4-markdown | $space-6 | $space-6 |
| marginTop-H5-markdown | $space-5 | $space-5 |
| marginTop-H6-markdown | $space-4 | $space-4 |
| marginTop-Image-markdown | $space-6 | $space-6 |
| marginTop-Li-markdown | $space-2_5 | $space-2_5 |
| marginTop-Ol-markdown | $space-2_5 | $space-2_5 |
| marginTop-Table-markdown | none | none |
| marginTop-Text-markdown | $space-2 | $space-2 |
| marginTop-Ul-markdown | $space-2_5 | $space-2_5 |
| marginTop-Video-markdown | none | none |
| padding-Admonition-markdown | none | none |
| padding-Blockquote-markdown | none | none |
| padding-Details-markdown | none | none |
| padding-HtmlThead | none | none |
| padding-Li-markdown | none | none |
| padding-Ol-markdown | none | none |
| padding-Table-markdown | none | none |
| padding-Td-markdown | $space-2 | $space-2 |
| padding-Th-markdown | $space-2 | $space-2 |
| padding-Ul-markdown | none | none |
| paddingBottom-Admonition-markdown | $space-2 | $space-2 |
| paddingBottom-Blockquote-markdown | $space-2_5 | $space-2_5 |
| paddingBottom-Details-markdown | none | none |
| paddingBottom-HtmlThead | none | none |
| paddingBottom-Li-markdown | none | none |
| paddingBottom-Markdown | none | none |
| paddingBottom-Ol-markdown | none | none |
| paddingBottom-Table-markdown | none | none |
| paddingBottom-Td-markdown | none | none |
| paddingBottom-Th-markdown | none | none |
| paddingBottom-Ul-markdown | none | none |
| paddingHorizontal-Admonition-markdown | none | none |
| paddingHorizontal-Blockquote-markdown | $space-6 | $space-6 |
| paddingHorizontal-Details-markdown | none | none |
| paddingHorizontal-HtmlThead | none | none |
| paddingHorizontal-Li-markdown | none | none |
| paddingHorizontal-Ol-markdown | none | none |
| paddingHorizontal-Table-markdown | none | none |
| paddingHorizontal-Td-markdown | none | none |
| paddingHorizontal-Th-markdown | none | none |
| paddingHorizontal-Ul-markdown | none | none |
| paddingLeft-Admonition-markdown | $space-2 | $space-2 |
| paddingLeft-Blockquote-markdown | none | none |
| paddingLeft-Details-markdown | none | none |
| paddingLeft-HtmlThead | none | none |
| paddingLeft-Li-markdown | none | none |
| paddingLeft-Ol-markdown | none | none |
| paddingLeft-Table-markdown | none | none |
| paddingLeft-Td-markdown | none | none |
| paddingLeft-Th-markdown | none | none |
| paddingLeft-Ul-markdown | none | none |
| paddingRight-Admonition-markdown | $space-6 | $space-6 |
| paddingRight-Blockquote-markdown | none | none |
| paddingRight-Details-markdown | none | none |
| paddingRight-HtmlThead | none | none |
| paddingRight-Li-markdown | none | none |
| paddingRight-Ol-markdown | none | none |
| paddingRight-Table-markdown | none | none |
| paddingRight-Td-markdown | none | none |
| paddingRight-Th-markdown | none | none |
| paddingRight-Ul-markdown | none | none |
| paddingTop-Admonition-markdown | $space-3 | $space-3 |
| paddingTop-Blockquote-markdown | $space-3 | $space-3 |
| paddingTop-Details-markdown | none | none |
| paddingTop-HtmlThead | none | none |
| paddingTop-Li-markdown | none | none |
| paddingTop-Markdown | none | none |
| paddingTop-Ol-markdown | none | none |
| paddingTop-Table-markdown | none | none |
| paddingTop-Td-markdown | none | none |
| paddingTop-Th-markdown | none | none |
| paddingTop-Ul-markdown | none | none |
| paddingVertical-Admonition-markdown | none | none |
| paddingVertical-Blockquote-markdown | none | none |
| paddingVertical-Details-markdown | none | none |
| paddingVertical-HtmlThead | none | none |
| paddingVertical-Li-markdown | none | none |
| paddingVertical-Ol-markdown | none | none |
| paddingVertical-Table-markdown | none | none |
| paddingVertical-Td-markdown | none | none |
| paddingVertical-Th-markdown | none | none |
| paddingVertical-Ul-markdown | none | none |
| size-icon-Admonition-markdown | $space-5 | $space-5 |
| textAlign-Tbody-markdown | none | none |
| textAlign-Td-markdown | none | none |
| textAlign-Text | none | none |
| textAlignLast-Text | none | none |
| textColor-Table-markdown | none | none |
| textColor-Tbody-markdown | none | none |
| textColor-Text | none | none |
| textColor-Tfoot-markdown | none | none |
| textColor-Th-markdown | none | none |
| textColor-Thead-markdown | $color-surface-500 | $color-surface-500 |
| textColor-Tr-markdown | none | none |
| textColor-Tr-markdown--hover | none | none |
| textDecorationColor-Text | none | none |
| textDecorationLine-Text | none | none |
| textDecorationStyle-Text | none | none |
| textDecorationThickness-Text | none | none |
| textIndent-Text | none | none |
| textShadow-Text | none | none |
| textTransform-Table-markdown | none | none |
| textTransform-Tbody-markdown | none | none |
| textTransform-Text | none | none |
| textTransform-Thead-markdown | uppercase | uppercase |
| textUnderlineOffset-Text | none | none |
| verticalAlignment-Tbody-markdown | none | none |
| verticalAlignment-Td-markdown | top | top |
| width-accent-Blockquote-markdown | 3px | 3px |
| width-Table-markdown | none | none |
| wordBreak-Text | none | none |
| wordSpacing-Text | none | none |
| wordWrap-Text | none | none |
| writingMode-Text | none | none |