mdxファイルのお作法
コードの記述方法
Section titled “コードの記述方法”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 { Code } from '@astrojs/starlight/components'import importedCode from 'example.js?raw';
<Code code={importedCode} lang="js" title="コードをインポートする"/>
console.log('This could come from a file or CMS!');
console.log('This could come from a file or CMS!');