FluxMarkdown registers itself with macOS as a QuickLook provider for a wide range of Markdown-adjacent file types. When you press Space on any of the files listed below in Finder, FluxMarkdown handles the preview — rendering it as formatted Markdown rather than showing plain text.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/xykong/flux-markdown/llms.txt
Use this file to discover all available pages before exploring further.
macOS uses the Uniform Type Identifier (UTI) system to match files to QuickLook providers. FluxMarkdown declares a set of exported UTIs in its
Info.plist (via UTExportedTypeDeclarations) so that macOS recognizes each extension and routes it to the FluxMarkdown extension. On macOS Ventura and later, FluxMarkdown also uses pluginkit -e use at install time to explicitly activate the extension and set its priority, ensuring it is not pre-empted by older or conflicting plugins.Supported extensions
Standard Markdown
| Extension | Format | Notes |
|---|---|---|
.md | Standard Markdown | The most common Markdown extension; recognized universally. |
.markdown | Standard Markdown | Long-form alternative to .md; fully equivalent. |
Extended and specialized formats
| Extension | Format | Notes |
|---|---|---|
.mdx | MDX (Markdown + JSX) | Used in React and Next.js documentation. JSX syntax is not executed; content is rendered as Markdown. |
.rmd | R Markdown | Used with RStudio for reproducible research documents. Code chunks are rendered as code blocks. |
.qmd | Quarto Markdown | Used with the Quarto publishing system. Rendered as Markdown; execution directives appear as code blocks. |
.mdoc | Markdoc | Structured Markdown dialect used by Stripe and others. |
.livemd | Livebook | Elixir ecosystem notebook format used with Livebook. |
Mermaid diagram files
| Extension | Format | Notes |
|---|---|---|
.mmd | Mermaid diagram | Special handling: see below. |
Markdown variant extensions
| Extension | Format | Notes |
|---|---|---|
.mkd | Markdown variant | Alternative extension in common use. |
.mkdn | Markdown variant | Alternative extension in common use. |
.mkdown | Markdown variant | Alternative extension in common use. |
.mdwn | Markdown variant | Alternative extension used by ikiwiki and similar tools. |
.mdown | Markdown variant | Alternative extension in common use. |
Special handling for .mmd files
.mmd files are pure Mermaid diagram source files — they contain only diagram syntax without any surrounding Markdown. When FluxMarkdown opens a .mmd file, it automatically wraps the entire file content in a Mermaid fenced code block before rendering:
/Applications/. If the app is in ~/Downloads/, ~/Desktop/, or any other location, the QuickLook extension may not activate. Move the app to /Applications/ and relaunch.
Diagrams and charts
Mermaid, Vega, and Graphviz rendering details
Troubleshooting
Fix QuickLook registration and preview issues