blob: 1149666b2a773672a5465ed91ed3eb3e721c6ece (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
import { Markdown } from 'astro/components';
import Layout from '../layouts/main.astro';
const title = `External Markdown`;
const content = `Markdown *content* to render`;
---
<Layout content={{ title }}>
<main>
<div>
<Markdown {content} />
<p>Some other stuff</p>
</div>
<p>Lastly...</p>
</main>
</Layout>
|