AI agents: fetch the documentation index at llms.txt. Markdown versions are available by appending .md to any page URL, including this page's markdown.
MDX basics
Learn how to write Blode.md documentation with standard Markdown, GFM syntax, and built-in JSX components that need no import statements.
MDX combines Markdown with JSX components. You write standard Markdown, and when you need richer elements, you use built-in components directly in your content. No imports are needed.
Markdown
All standard Markdown syntax works, including GitHub Flavored Markdown (GFM):
- Headings:
#,##,###, etc. - Bold and italic text
- Lists (ordered and unordered)
- Links and images
- Blockquotes
- Tables
- Fenced code blocks with syntax highlighting
Using components
Blode.md provides over 30 built-in components. Use them directly in your MDX without any import statements:
This is a paragraph with standard Markdown.
<Callout type="info">This is a callout component rendered inline.</Callout>Components accept props just like JSX: