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 data property
  • 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 &lt;
> (greater than) - Must be escaped as &gt;
& (ampersand) - Must be escaped as &amp;
" (double quote) - Must be escaped as &quot; in attributes
' (single quote/apostrophe) - Must be escaped as &apos; 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>
HTML with colspan
<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.

Example: binding expressions syntax

Behaviors

This component supports the following behaviors:

BehaviorProperties
Animationanimation, animationOptions
Bookmarkbookmark, bookmarkLevel, bookmarkTitle, bookmarkOmitFromToc
Component Labellabel, labelPosition, labelWidth, labelBreak, required, enabled, shrinkToLabel, style, readOnly
Publish/SubscribesubscribeToTopic
Tooltiptooltip, tooltipMarkdown, tooltipOptions
Styling Variantvariant

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:

ValueDescription
normalUses standard word boundaries for breaking (default)
wordBreaks long words when necessary to prevent overflow
anywhereBreaks at any character if needed to fit content
keepPrevents breaking within words entirely
hyphenateUses 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>
Example: breakMode='word'
<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:

ValueDescription
noneNo wrapping, text stays on a single line with no overflow indicator
ellipsisTruncates with an ellipsis
scrollForces single line with horizontal scrolling when content overflows
flowAllows 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">
        <![CDATA[
This markdown content wraps to multiple lines naturally. It can contain **bold text**, *italic text*, and even [links](https://example.com), 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>
Example: overflowMode='flow'
<App>
  <VStack gap="16px">
    <VStack gap="8px">
      <Text variant="strong">overflowMode="flow"</Text>
      <Markdown
        width="300px"
        backgroundColor="lightblue"
        padding="8px"
        overflowMode="flow">
        <![CDATA[
This markdown content wraps to multiple lines naturally. It can contain **bold text**, *italic text*, and even [links](https://example.com), 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">
    <![CDATA[
[issue #123](https://example.com/issue/123), [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>
Example: comma-separated references
<App>
  <Markdown
    width="400px"
    backgroundColor="lavender"
    padding="8px"
    overflowMode="flow"
    breakMode="word">
    <![CDATA[
[issue #123](https://example.com/issue/123), [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>
Example: removeIndents property
<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.

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>
Example: truncateLinks property
<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

VariableDefault 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-infononenone
backgroundColor-Admonition-markdown-notenonenone
backgroundColor-Admonition-markdown-tipnonenone
backgroundColor-Admonition-markdown-warning$color-warn-100$color-warn-100
backgroundColor-Blockquote-markdown$color-surface-100$color-surface-50
backgroundColor-even-Tr-markdownnonenone
backgroundColor-Markdownnonenone
backgroundColor-Table-markdownnonenone
backgroundColor-Tbody-markdownnonenone
backgroundColor-Td-markdownnonenone
backgroundColor-Textnonenone
backgroundColor-Tfoot-markdownnonenone
backgroundColor-Th-markdownnonenone
backgroundColor-Th-markdown--hovernonenone
backgroundColor-Thead-markdown$color-surface-100$color-surface-100
backgroundColor-Tr-markdownnonenone
backgroundColor-Tr-markdown--hovernonenone
border-Admonition-markdown0px solid $color-primary-3000px solid $color-primary-300
border-Admonition-markdown-card1px solid $color-surface-2001px solid $color-surface-200
border-Admonition-markdown-feat1px solid $color-surface-2001px solid $color-surface-200
border-Blockquote-markdownnonenone
border-Details-markdownnonenone
border-HtmlTheadnonenone
border-Li-markdownnonenone
border-Ol-markdownnonenone
border-Table-markdown1px solid $borderColor1px solid $borderColor
border-Td-markdownnonenone
border-Th-markdownnonenone
border-Tr-markdown1px solid $borderColor1px solid $borderColor
border-Ul-markdownnonenone
borderBottom-Admonition-markdownnonenone
borderBottom-Blockquote-markdownnonenone
borderBottom-Details-markdownnonenone
borderBottom-HtmlTheadnonenone
borderBottom-Li-markdownnonenone
borderBottom-Ol-markdownnonenone
borderBottom-Table-markdownnonenone
borderBottom-Td-markdownnonenone
borderBottom-Th-markdownnonenone
borderBottom-Tr-markdownnonenone
borderBottom-Ul-markdownnonenone
borderBottomColor-Admonition-markdownnonenone
borderBottomColor-Blockquote-markdownnonenone
borderBottomColor-Details-markdownnonenone
borderBottomColor-HtmlTheadnonenone
borderBottomColor-Li-markdownnonenone
borderBottomColor-Ol-markdownnonenone
borderBottomColor-Table-markdownnonenone
borderBottomColor-Td-markdownnonenone
borderBottomColor-Th-markdownnonenone
borderBottomColor-Tr-markdownnonenone
borderBottomColor-Ul-markdownnonenone
borderBottomStyle-Admonition-markdownnonenone
borderBottomStyle-Blockquote-markdownnonenone
borderBottomStyle-Details-markdownnonenone
borderBottomStyle-HtmlTheadnonenone
borderBottomStyle-Li-markdownnonenone
borderBottomStyle-Ol-markdownnonenone
borderBottomStyle-Table-markdownnonenone
borderBottomStyle-Td-markdownnonenone
borderBottomStyle-Th-markdownnonenone
borderBottomStyle-Tr-markdownnonenone
borderBottomStyle-Ul-markdownnonenone
borderBottomWidth-Admonition-markdownnonenone
borderBottomWidth-Blockquote-markdownnonenone
borderBottomWidth-Details-markdownnonenone
borderBottomWidth-HtmlTheadnonenone
borderBottomWidth-Li-markdownnonenone
borderBottomWidth-Ol-markdownnonenone
borderBottomWidth-Table-markdownnonenone
borderBottomWidth-Td-markdownnonenone
borderBottomWidth-Th-markdownnonenone
borderBottomWidth-Tr-markdownnonenone
borderBottomWidth-Ul-markdownnonenone
borderColor-Admonition-markdownnonenone
borderColor-Admonition-markdown-cardnonenone
borderColor-Admonition-markdown-danger$color-danger-300$color-danger-300
borderColor-Admonition-markdown-defnonenone
borderColor-Admonition-markdown-featnonenone
borderColor-Admonition-markdown-infononenone
borderColor-Admonition-markdown-notenonenone
borderColor-Admonition-markdown-tipnonenone
borderColor-Admonition-markdown-warning$color-warn-300$color-warn-300
borderColor-Blockquote-markdownnonenone
borderColor-Details-markdownnonenone
borderColor-HorizontalRule-markdown$borderColor$borderColor
borderColor-HtmlTheadnonenone
borderColor-Li-markdownnonenone
borderColor-Ol-markdownnonenone
borderColor-Table-markdownnonenone
borderColor-Td-markdownnonenone
borderColor-Th-markdownnonenone
borderColor-Tr-markdownnonenone
borderColor-Ul-markdownnonenone
borderEndEndRadius-Admonition-markdownnonenone
borderEndEndRadius-Blockquote-markdownnonenone
borderEndEndRadius-Details-markdownnonenone
borderEndEndRadius-HtmlTheadnonenone
borderEndEndRadius-Li-markdownnonenone
borderEndEndRadius-Ol-markdownnonenone
borderEndEndRadius-Table-markdownnonenone
borderEndEndRadius-Td-markdownnonenone
borderEndEndRadius-Th-markdownnonenone
borderEndEndRadius-Tr-markdownnonenone
borderEndEndRadius-Ul-markdownnonenone
borderEndStartRadius-Admonition-markdownnonenone
borderEndStartRadius-Blockquote-markdownnonenone
borderEndStartRadius-Details-markdownnonenone
borderEndStartRadius-HtmlTheadnonenone
borderEndStartRadius-Li-markdownnonenone
borderEndStartRadius-Ol-markdownnonenone
borderEndStartRadius-Table-markdownnonenone
borderEndStartRadius-Td-markdownnonenone
borderEndStartRadius-Th-markdownnonenone
borderEndStartRadius-Tr-markdownnonenone
borderEndStartRadius-Ul-markdownnonenone
borderHorizontal-Admonition-markdownnonenone
borderHorizontal-Blockquote-markdownnonenone
borderHorizontal-Details-markdownnonenone
borderHorizontal-HtmlTheadnonenone
borderHorizontal-Li-markdownnonenone
borderHorizontal-Ol-markdownnonenone
borderHorizontal-Table-markdownnonenone
borderHorizontal-Td-markdownnonenone
borderHorizontal-Th-markdownnonenone
borderHorizontal-Tr-markdownnonenone
borderHorizontal-Ul-markdownnonenone
borderHorizontalColor-Admonition-markdownnonenone
borderHorizontalColor-Blockquote-markdownnonenone
borderHorizontalColor-Details-markdownnonenone
borderHorizontalColor-HtmlTheadnonenone
borderHorizontalColor-Li-markdownnonenone
borderHorizontalColor-Ol-markdownnonenone
borderHorizontalColor-Table-markdownnonenone
borderHorizontalColor-Td-markdownnonenone
borderHorizontalColor-Th-markdownnonenone
borderHorizontalColor-Tr-markdownnonenone
borderHorizontalColor-Ul-markdownnonenone
borderHorizontalStyle-Admonition-markdownnonenone
borderHorizontalStyle-Blockquote-markdownnonenone
borderHorizontalStyle-Details-markdownnonenone
borderHorizontalStyle-HtmlTheadnonenone
borderHorizontalStyle-Li-markdownnonenone
borderHorizontalStyle-Ol-markdownnonenone
borderHorizontalStyle-Table-markdownnonenone
borderHorizontalStyle-Td-markdownnonenone
borderHorizontalStyle-Th-markdownnonenone
borderHorizontalStyle-Tr-markdownnonenone
borderHorizontalStyle-Ul-markdownnonenone
borderHorizontalWidth-Admonition-markdownnonenone
borderHorizontalWidth-Blockquote-markdownnonenone
borderHorizontalWidth-Details-markdownnonenone
borderHorizontalWidth-HtmlTheadnonenone
borderHorizontalWidth-Li-markdownnonenone
borderHorizontalWidth-Ol-markdownnonenone
borderHorizontalWidth-Table-markdownnonenone
borderHorizontalWidth-Td-markdownnonenone
borderHorizontalWidth-Th-markdownnonenone
borderHorizontalWidth-Tr-markdownnonenone
borderHorizontalWidth-Ul-markdownnonenone
borderLeft-Admonition-markdownnonenone
borderLeft-Blockquote-markdownnonenone
borderLeft-Details-markdownnonenone
borderLeft-HtmlTheadnonenone
borderLeft-Li-markdownnonenone
borderLeft-Ol-markdownnonenone
borderLeft-Table-markdownnonenone
borderLeft-Td-markdownnonenone
borderLeft-Th-markdownnonenone
borderLeft-Tr-markdownnonenone
borderLeft-Ul-markdownnonenone
borderLeftColor-Admonition-markdownnonenone
borderLeftColor-Blockquote-markdownnonenone
borderLeftColor-Details-markdownnonenone
borderLeftColor-HtmlTheadnonenone
borderLeftColor-Li-markdownnonenone
borderLeftColor-Ol-markdownnonenone
borderLeftColor-Table-markdownnonenone
borderLeftColor-Td-markdownnonenone
borderLeftColor-Th-markdownnonenone
borderLeftColor-Tr-markdownnonenone
borderLeftColor-Ul-markdownnonenone
borderLeftStyle-Admonition-markdownnonenone
borderLeftStyle-Blockquote-markdownnonenone
borderLeftStyle-Details-markdownnonenone
borderLeftStyle-HtmlTheadnonenone
borderLeftStyle-Li-markdownnonenone
borderLeftStyle-Ol-markdownnonenone
borderLeftStyle-Table-markdownnonenone
borderLeftStyle-Td-markdownnonenone
borderLeftStyle-Th-markdownnonenone
borderLeftStyle-Tr-markdownnonenone
borderLeftStyle-Ul-markdownnonenone
borderLeftWidth-Admonition-markdownnonenone
borderLeftWidth-Blockquote-markdownnonenone
borderLeftWidth-Details-markdownnonenone
borderLeftWidth-HtmlTheadnonenone
borderLeftWidth-Li-markdownnonenone
borderLeftWidth-Ol-markdownnonenone
borderLeftWidth-Table-markdownnonenone
borderLeftWidth-Td-markdownnonenone
borderLeftWidth-Th-markdownnonenone
borderLeftWidth-Tr-markdownnonenone
borderLeftWidth-Ul-markdownnonenone
borderRadius-Admonition-markdown$space-2$space-2
borderRadius-Blockquote-markdownnonenone
borderRight-Admonition-markdownnonenone
borderRight-Blockquote-markdownnonenone
borderRight-Details-markdownnonenone
borderRight-HtmlTheadnonenone
borderRight-Li-markdownnonenone
borderRight-Ol-markdownnonenone
borderRight-Table-markdownnonenone
borderRight-Td-markdownnonenone
borderRight-Th-markdownnonenone
borderRight-Tr-markdownnonenone
borderRight-Ul-markdownnonenone
borderRightColor-Admonition-markdownnonenone
borderRightColor-Blockquote-markdownnonenone
borderRightColor-Details-markdownnonenone
borderRightColor-HtmlTheadnonenone
borderRightColor-Li-markdownnonenone
borderRightColor-Ol-markdownnonenone
borderRightColor-Table-markdownnonenone
borderRightColor-Td-markdownnonenone
borderRightColor-Th-markdownnonenone
borderRightColor-Tr-markdownnonenone
borderRightColor-Ul-markdownnonenone
borderRightStyle-Admonition-markdownnonenone
borderRightStyle-Blockquote-markdownnonenone
borderRightStyle-Details-markdownnonenone
borderRightStyle-HtmlTheadnonenone
borderRightStyle-Li-markdownnonenone
borderRightStyle-Ol-markdownnonenone
borderRightStyle-Table-markdownnonenone
borderRightStyle-Td-markdownnonenone
borderRightStyle-Th-markdownnonenone
borderRightStyle-Tr-markdownnonenone
borderRightStyle-Ul-markdownnonenone
borderRightWidth-Admonition-markdownnonenone
borderRightWidth-Blockquote-markdownnonenone
borderRightWidth-Details-markdownnonenone
borderRightWidth-HtmlTheadnonenone
borderRightWidth-Li-markdownnonenone
borderRightWidth-Ol-markdownnonenone
borderRightWidth-Table-markdownnonenone
borderRightWidth-Td-markdownnonenone
borderRightWidth-Th-markdownnonenone
borderRightWidth-Tr-markdownnonenone
borderRightWidth-Ul-markdownnonenone
borderStartEndRadius-Admonition-markdownnonenone
borderStartEndRadius-Blockquote-markdownnonenone
borderStartEndRadius-Details-markdownnonenone
borderStartEndRadius-HtmlTheadnonenone
borderStartEndRadius-Li-markdownnonenone
borderStartEndRadius-Ol-markdownnonenone
borderStartEndRadius-Table-markdownnonenone
borderStartEndRadius-Td-markdownnonenone
borderStartEndRadius-Th-markdownnonenone
borderStartEndRadius-Tr-markdownnonenone
borderStartEndRadius-Ul-markdownnonenone
borderStartStartRadius-Admonition-markdownnonenone
borderStartStartRadius-Blockquote-markdownnonenone
borderStartStartRadius-Details-markdownnonenone
borderStartStartRadius-HtmlTheadnonenone
borderStartStartRadius-Li-markdownnonenone
borderStartStartRadius-Ol-markdownnonenone
borderStartStartRadius-Table-markdownnonenone
borderStartStartRadius-Td-markdownnonenone
borderStartStartRadius-Th-markdownnonenone
borderStartStartRadius-Tr-markdownnonenone
borderStartStartRadius-Ul-markdownnonenone
borderStyle-Admonition-markdownnonenone
borderStyle-Admonition-markdown-cardnonenone
borderStyle-Admonition-markdown-dangernonenone
borderStyle-Admonition-markdown-defnonenone
borderStyle-Admonition-markdown-featnonenone
borderStyle-Admonition-markdown-infononenone
borderStyle-Admonition-markdown-notenonenone
borderStyle-Admonition-markdown-tipnonenone
borderStyle-Admonition-markdown-warningnonenone
borderStyle-Blockquote-markdownnonenone
borderStyle-Details-markdownnonenone
borderStyle-HorizontalRule-markdownsolidsolid
borderStyle-HtmlTheadnonenone
borderStyle-Li-markdownnonenone
borderStyle-Ol-markdownnonenone
borderStyle-Table-markdownnonenone
borderStyle-Td-markdownnonenone
borderStyle-Th-markdownnonenone
borderStyle-Tr-markdownnonenone
borderStyle-Ul-markdownnonenone
borderTop-Admonition-markdownnonenone
borderTop-Blockquote-markdownnonenone
borderTop-Details-markdownnonenone
borderTop-HtmlTheadnonenone
borderTop-Li-markdownnonenone
borderTop-Ol-markdownnonenone
borderTop-Table-markdownnonenone
borderTop-Td-markdownnonenone
borderTop-Th-markdownnonenone
borderTop-Tr-markdownnonenone
borderTop-Ul-markdownnonenone
borderTopColor-Admonition-markdownnonenone
borderTopColor-Blockquote-markdownnonenone
borderTopColor-Details-markdownnonenone
borderTopColor-HtmlTheadnonenone
borderTopColor-Li-markdownnonenone
borderTopColor-Ol-markdownnonenone
borderTopColor-Table-markdownnonenone
borderTopColor-Td-markdownnonenone
borderTopColor-Th-markdownnonenone
borderTopColor-Tr-markdownnonenone
borderTopColor-Ul-markdownnonenone
borderTopStyle-Admonition-markdownnonenone
borderTopStyle-Blockquote-markdownnonenone
borderTopStyle-Details-markdownnonenone
borderTopStyle-HtmlTheadnonenone
borderTopStyle-Li-markdownnonenone
borderTopStyle-Ol-markdownnonenone
borderTopStyle-Table-markdownnonenone
borderTopStyle-Td-markdownnonenone
borderTopStyle-Th-markdownnonenone
borderTopStyle-Tr-markdownnonenone
borderTopStyle-Ul-markdownnonenone
borderTopWidth-Admonition-markdownnonenone
borderTopWidth-Blockquote-markdownnonenone
borderTopWidth-Details-markdownnonenone
borderTopWidth-HtmlTheadnonenone
borderTopWidth-Li-markdownnonenone
borderTopWidth-Ol-markdownnonenone
borderTopWidth-Table-markdownnonenone
borderTopWidth-Td-markdownnonenone
borderTopWidth-Th-markdownnonenone
borderTopWidth-Tr-markdownnonenone
borderTopWidth-Ul-markdownnonenone
borderVertical-Admonition-markdownnonenone
borderVertical-Blockquote-markdownnonenone
borderVertical-Details-markdownnonenone
borderVertical-HtmlTheadnonenone
borderVertical-Li-markdownnonenone
borderVertical-Ol-markdownnonenone
borderVertical-Table-markdownnonenone
borderVertical-Td-markdownnonenone
borderVertical-Th-markdownnonenone
borderVertical-Tr-markdownnonenone
borderVertical-Ul-markdownnonenone
borderVerticalColor-Admonition-markdownnonenone
borderVerticalColor-Blockquote-markdownnonenone
borderVerticalColor-Details-markdownnonenone
borderVerticalColor-HtmlTheadnonenone
borderVerticalColor-Li-markdownnonenone
borderVerticalColor-Ol-markdownnonenone
borderVerticalColor-Table-markdownnonenone
borderVerticalColor-Td-markdownnonenone
borderVerticalColor-Th-markdownnonenone
borderVerticalColor-Tr-markdownnonenone
borderVerticalColor-Ul-markdownnonenone
borderVerticalStyle-Admonition-markdownnonenone
borderVerticalStyle-Blockquote-markdownnonenone
borderVerticalStyle-Details-markdownnonenone
borderVerticalStyle-HtmlTheadnonenone
borderVerticalStyle-Li-markdownnonenone
borderVerticalStyle-Ol-markdownnonenone
borderVerticalStyle-Table-markdownnonenone
borderVerticalStyle-Td-markdownnonenone
borderVerticalStyle-Th-markdownnonenone
borderVerticalStyle-Tr-markdownnonenone
borderVerticalStyle-Ul-markdownnonenone
borderVerticalWidth-Admonition-markdownnonenone
borderVerticalWidth-Blockquote-markdownnonenone
borderVerticalWidth-Details-markdownnonenone
borderVerticalWidth-HtmlTheadnonenone
borderVerticalWidth-Li-markdownnonenone
borderVerticalWidth-Ol-markdownnonenone
borderVerticalWidth-Table-markdownnonenone
borderVerticalWidth-Td-markdownnonenone
borderVerticalWidth-Th-markdownnonenone
borderVerticalWidth-Tr-markdownnonenone
borderVerticalWidth-Ul-markdownnonenone
borderWidth-Admonition-markdownnonenone
borderWidth-Admonition-markdown-cardnonenone
borderWidth-Admonition-markdown-dangernonenone
borderWidth-Admonition-markdown-defnonenone
borderWidth-Admonition-markdown-featnonenone
borderWidth-Admonition-markdown-infononenone
borderWidth-Admonition-markdown-notenonenone
borderWidth-Admonition-markdown-tipnonenone
borderWidth-Admonition-markdown-warningnonenone
borderWidth-Blockquote-markdownnonenone
borderWidth-Details-markdownnonenone
borderWidth-HorizontalRule-markdown2px2px
borderWidth-HtmlTheadnonenone
borderWidth-Li-markdownnonenone
borderWidth-Ol-markdownnonenone
borderWidth-Table-markdownnonenone
borderWidth-Td-markdownnonenone
borderWidth-Th-markdownnonenone
borderWidth-Tr-markdownnonenone
borderWidth-Ul-markdownnonenone
color-accent-Blockquote-markdown$color-surface-500$color-surface-500
direction-Textnonenone
fontFamily-Table-markdownnonenone
fontFamily-Textnonenone
fontSize-H1-markdownnonenone
fontSize-H2-markdownnonenone
fontSize-H3-markdownnonenone
fontSize-H4-markdownnonenone
fontSize-H5-markdownnonenone
fontSize-H6-markdownnonenone
fontSize-Table-markdownnonenone
fontSize-Td-markdownnonenone
fontSize-Textnonenone
fontSize-Text-markdown$fontSize$fontSize
fontSize-Th-markdown$fontSize-sm$fontSize-sm
fontSize-Thead-markdownnonenone
fontSize-Tr-markdownnonenone
fontStretch-Textnonenone
fontStyle-Textnonenone
fontVariant-Textnonenone
fontWeight-Table-markdownnonenone
fontWeight-Td-markdownnonenone
fontWeight-Textnonenone
fontWeight-Text-markdownfontWeight-TextfontWeight-Text
fontWeight-Th-markdownnonenone
fontWeight-Thead-markdown$fontWeight-bold$fontWeight-bold
fontWeight-Tr-markdownnonenone
letterSpacing-Textnonenone
lineBreak-Textnonenone
lineHeight-Textnonenone
listStyleType-Li-markdownnonenone
marginBottom-Admonition-markdown$space-6$space-6
marginBottom-Blockquote-markdown$space-6$space-6
marginBottom-Details-markdownnonenone
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-markdownnonenone
marginBottom-Text-markdown$space-2$space-2
marginBottom-Ul-markdown$space-5$space-5
marginBottom-Video-markdownnonenone
marginLeft-content-Admonition-markdown$space-1_5$space-1_5
marginLeft-Image-markdown$space-0$space-0
marginLeft-Li-markdownnonenone
marginLeft-Ol-markdown$space-8$space-8
marginLeft-Text-markdownnonenone
marginLeft-Ul-markdown$space-8$space-8
marginRight-Image-markdown$space-0$space-0
marginRight-Ol-markdown$space-0$space-0
marginRight-Text-markdownnonenone
marginRight-Ul-markdown$space-0$space-0
marginTop-Admonition-markdown$space-6$space-6
marginTop-Blockquote-markdown$space-6$space-6
marginTop-Details-markdownnonenone
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-markdownnonenone
marginTop-Text-markdown$space-2$space-2
marginTop-Ul-markdown$space-2_5$space-2_5
marginTop-Video-markdownnonenone
padding-Admonition-markdownnonenone
padding-Blockquote-markdownnonenone
padding-Details-markdownnonenone
padding-HtmlTheadnonenone
padding-Li-markdownnonenone
padding-Ol-markdownnonenone
padding-Table-markdownnonenone
padding-Td-markdown$space-2$space-2
padding-Th-markdown$space-2$space-2
padding-Ul-markdownnonenone
paddingBottom-Admonition-markdown$space-2$space-2
paddingBottom-Blockquote-markdown$space-2_5$space-2_5
paddingBottom-Details-markdownnonenone
paddingBottom-HtmlTheadnonenone
paddingBottom-Li-markdownnonenone
paddingBottom-Markdownnonenone
paddingBottom-Ol-markdownnonenone
paddingBottom-Table-markdownnonenone
paddingBottom-Td-markdownnonenone
paddingBottom-Th-markdownnonenone
paddingBottom-Ul-markdownnonenone
paddingHorizontal-Admonition-markdownnonenone
paddingHorizontal-Blockquote-markdown$space-6$space-6
paddingHorizontal-Details-markdownnonenone
paddingHorizontal-HtmlTheadnonenone
paddingHorizontal-Li-markdownnonenone
paddingHorizontal-Ol-markdownnonenone
paddingHorizontal-Table-markdownnonenone
paddingHorizontal-Td-markdownnonenone
paddingHorizontal-Th-markdownnonenone
paddingHorizontal-Ul-markdownnonenone
paddingLeft-Admonition-markdown$space-2$space-2
paddingLeft-Blockquote-markdownnonenone
paddingLeft-Details-markdownnonenone
paddingLeft-HtmlTheadnonenone
paddingLeft-Li-markdownnonenone
paddingLeft-Ol-markdownnonenone
paddingLeft-Table-markdownnonenone
paddingLeft-Td-markdownnonenone
paddingLeft-Th-markdownnonenone
paddingLeft-Ul-markdownnonenone
paddingRight-Admonition-markdown$space-6$space-6
paddingRight-Blockquote-markdownnonenone
paddingRight-Details-markdownnonenone
paddingRight-HtmlTheadnonenone
paddingRight-Li-markdownnonenone
paddingRight-Ol-markdownnonenone
paddingRight-Table-markdownnonenone
paddingRight-Td-markdownnonenone
paddingRight-Th-markdownnonenone
paddingRight-Ul-markdownnonenone
paddingTop-Admonition-markdown$space-3$space-3
paddingTop-Blockquote-markdown$space-3$space-3
paddingTop-Details-markdownnonenone
paddingTop-HtmlTheadnonenone
paddingTop-Li-markdownnonenone
paddingTop-Markdownnonenone
paddingTop-Ol-markdownnonenone
paddingTop-Table-markdownnonenone
paddingTop-Td-markdownnonenone
paddingTop-Th-markdownnonenone
paddingTop-Ul-markdownnonenone
paddingVertical-Admonition-markdownnonenone
paddingVertical-Blockquote-markdownnonenone
paddingVertical-Details-markdownnonenone
paddingVertical-HtmlTheadnonenone
paddingVertical-Li-markdownnonenone
paddingVertical-Ol-markdownnonenone
paddingVertical-Table-markdownnonenone
paddingVertical-Td-markdownnonenone
paddingVertical-Th-markdownnonenone
paddingVertical-Ul-markdownnonenone
size-icon-Admonition-markdown$space-5$space-5
textAlign-Tbody-markdownnonenone
textAlign-Td-markdownnonenone
textAlign-Textnonenone
textAlignLast-Textnonenone
textColor-Table-markdownnonenone
textColor-Tbody-markdownnonenone
textColor-Textnonenone
textColor-Tfoot-markdownnonenone
textColor-Th-markdownnonenone
textColor-Thead-markdown$color-surface-500$color-surface-500
textColor-Tr-markdownnonenone
textColor-Tr-markdown--hovernonenone
textDecorationColor-Textnonenone
textDecorationLine-Textnonenone
textDecorationStyle-Textnonenone
textDecorationThickness-Textnonenone
textIndent-Textnonenone
textShadow-Textnonenone
textTransform-Table-markdownnonenone
textTransform-Tbody-markdownnonenone
textTransform-Textnonenone
textTransform-Thead-markdownuppercaseuppercase
textUnderlineOffset-Textnonenone
verticalAlignment-Tbody-markdownnonenone
verticalAlignment-Td-markdowntoptop
width-accent-Blockquote-markdown3px3px
width-Table-markdownnonenone
wordBreak-Textnonenone
wordSpacing-Textnonenone
wordWrap-Textnonenone
writingMode-Textnonenone