Check this out
Interesting content you want to highlight.
Check this out
console.log('This could come from a file or CMS!');---
title: modop
---
import Extlink from "/src/comp/extlink.astro";
<Extlink href="https://www.niceforyou.com/sites/default/files/upload/manuals/IS0512A02MM.pdf" child="IT4WIFI"/ >
import { Card } from '@astrojs/starlight/components';
<Card title="Check this out">Interesting content you want to highlight.</Card>
import { Code } from '@astrojs/starlight/components';
export const exampleCode = `console.log('This could come from a file or CMS!');`;
export const fileName = 'example.js';
export const highlights = ['file', 'CMS'];
<Code code={exampleCode} lang="js" title={fileName} mark={highlights} />
import { FileTree } from '@astrojs/starlight/components';
<FileTree>
- astro.config.mjs
- package.json
- src
- components
- Header.astro
- Title.astro
- <Extlink href="https://www.niceforyou.com/sites/default/files/upload/manuals/IS0512A02MM.pdf" child="IT4WIFI"/ >
- pages/
</FileTree>
import rawDoc from './modop.mdx?raw';
<pre><code>{rawDoc}</code></pre>