AI assistants and crawlers (GPTBot, ClaudeBot, Perplexity, and others) increasingly read the web to answer users’ questions. HTML pages built for humans are heavy and noisy for them: navigation, scripts, and styling bury the actual content.
Morick Markdown Layer for AI adds a lightweight, machine-friendly Markdown layer on top of your existing site – without changing your theme, your URLs, or anything your human visitors see.
?ai=1 to any post, page, or archive URL and the plugin returns clean Markdown (with YAML frontmatter: title, description, canonical URL, dates, categories) instead of HTML.Accept: text/markdown header receive Markdown at the normal URL – no query parameter needed.llms.txt index: your site name, description, and a link list of all Markdown-enabled pages, so AI agents can discover your content in one request.<link rel="alternate" type="text/markdown"> in the head, which is how AI crawlers actually discover and follow the Markdown layer.For each Markdown request the plugin resolves in this order:
The Markdown response sends a Link: <original-url>; rel="canonical" HTTP header pointing back to the HTML page, plus Cache-Control: no-store, so the Markdown layer does not compete with your HTML pages in search engines.
Converted Markdown is cached per page in transients and invalidated automatically when the post is saved. The archive (llms.txt) and page lists are capped and filterable via the mdlai_post_types and mdlai_list_limit hooks.