No-Style Page Example

This page demonstrates the no-style feature with a custom layout

What is this page?

This is an example page that uses the noStyle: true frontmatter option to create a completely custom page layout. Unlike regular documentation pages, this page doesn't use the standard docmd layout with sidebar navigation and table of contents.

<h2>How does it work?</h2>
<p>
  The <code>noStyle</code> option tells docmd to use a special template that only includes the components you explicitly request
  via the <code>components</code> object in frontmatter. This gives you complete control over the page structure.
</p>

<h2>Features enabled on this page:</h2>
<ul>
  <li><strong>meta</strong>: Meta tags, title, and description for SEO</li>
  <li><strong>favicon</strong>: The site favicon</li>
  <li><strong>css</strong>: Basic CSS for markdown content</li>
  <li><strong>theme</strong>: Theme support for light/dark mode</li>
  <li><strong>scripts</strong>: JavaScript for functionality</li>
</ul>

<h2>Custom styling</h2>
<p>
  This page includes custom CSS in the <code>customHead</code> frontmatter field. This allows you to define page-specific styles
  without affecting the rest of your site.
</p>

<a href="/content/no-style-pages/" class="button">Get Back to No-Style Pages Documentation</a>