diff options
Diffstat (limited to 'examples/with-markdown-plugins')
-rw-r--r-- | examples/with-markdown-plugins/.stackblitzrc | 6 | ||||
-rw-r--r-- | examples/with-markdown-plugins/README.md | 9 |
2 files changed, 15 insertions, 0 deletions
diff --git a/examples/with-markdown-plugins/.stackblitzrc b/examples/with-markdown-plugins/.stackblitzrc new file mode 100644 index 000000000..43798ecff --- /dev/null +++ b/examples/with-markdown-plugins/.stackblitzrc @@ -0,0 +1,6 @@ +{ + "startCommand": "npm start", + "env": { + "ENABLE_CJS_IMPORTS": true + } +}
\ No newline at end of file diff --git a/examples/with-markdown-plugins/README.md b/examples/with-markdown-plugins/README.md new file mode 100644 index 000000000..c69920abe --- /dev/null +++ b/examples/with-markdown-plugins/README.md @@ -0,0 +1,9 @@ +# Astro Example: Markdown with Plugins + +``` +npm init astro -- --template with-markdown-plugins +``` + +[](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/with-markdown-plugins) + +This example showcases Astro's [built-in Markdown support](../../docs/markdown.md) with additional, user-provided plugins. |