diff options
Diffstat (limited to 'examples/with-markdown/src/pages/external.astro')
-rw-r--r-- | examples/with-markdown/src/pages/external.astro | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/with-markdown/src/pages/external.astro b/examples/with-markdown/src/pages/external.astro deleted file mode 100644 index 395e27c71..000000000 --- a/examples/with-markdown/src/pages/external.astro +++ /dev/null @@ -1,19 +0,0 @@ ---- -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> |