Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.flowx.ai/llms.txt

Use this file to discover all available pages before exploring further.

Available starting with FlowX.AI 5.8.0The Markdown component renders formatted Markdown content — headings, lists, links, tables, code blocks, and inline styles — anywhere in a UI screen.
This is the standalone Markdown UI component. For Markdown rendering inside chat messages, see the Chat component.

Overview

Use a Markdown component when you need to display rich text that may include structure (headings, lists, tables) or content authored in Markdown by an AI model, a CMS entry, or a process data field. Common use cases:
  • Surfacing an AI-generated explanation alongside a form
  • Embedding Terms & Conditions or Help text written in Markdown
  • Rendering a step-by-step instruction list pulled from CMS
  • Showing a tabular summary returned by a workflow
The Markdown component is read-only. Bind its content to a process data key or a static value, and it renders on the fly.

Properties

PropertyTypeDescription
ContentString / expressionMarkdown source. Bind to a process data key or set a static literal.
VisibilityExpressionJavaScript expression that hides the component when truthy.
Theme overridesObjectOverride fonts, colours, link colour, heading styles, and table styling for this instance.

Supported Markdown

Standard CommonMark syntax: headings (# to ######), bold/italic, links, ordered and unordered lists, fenced code blocks, inline code, blockquotes, and tables (GFM-style). Raw HTML is not rendered.

Theme configuration

The Markdown component exposes two theme entries: Markdown (for the body) and Markdown table (for tables embedded inside Markdown content).

Markdown — body defaults

TokenDefaultDescription
fonttypography@Paragraph/P1#regularBase body typography.
colorcolor@shades#900Body text colour.
linkColorcolor@primary#500Inline link colour.
heading1Fonttypography@Heading/H5#mediumH1 typography.
heading2Fonttypography@Heading/H6#mediumH2 typography.
heading3Fonttypography@Paragraph/P3#mediumH3 typography.
heading4Fonttypography@Paragraph/P2#mediumH4 typography.
heading5Fonttypography@Paragraph/P2#mediumH5 typography.
heading6Fonttypography@Paragraph/P2#mediumH6 typography.

Markdown table — defaults

TokenDefaultDescription
borderColorcolor@neutrals#200Outer table border colour.
dividerColorcolor@neutrals#200Row and column divider colour.
backgroundColorcolor@shades#0Cell background.
fonttypography@Paragraph/P1#regularCell typography.
colorcolor@shades#900Cell text colour.
headerFonttypography@Paragraph/P1#mediumHeader row typography.
headerColorcolor@shades#900Header row text colour.
headerBackgroundColorcolor@neutrals#100Header row background.
To override globally, edit Theme → Components → Markdown (and Markdown table) in the Designer.

UI Designer overview

Compose screens in the UI Designer.

Typography

Configure typography styles for text components.
Last modified on May 11, 2026