blob: 395e27c715e55d1cfc09ae8d1928bd314d4ad589 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
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}>
</Markdown>
<p>Some other stuff</p>
</div>
<p>Lastly...</p>
</main>
</Layout>
|