diff options
author | 2021-09-16 08:06:22 -0700 | |
---|---|---|
committer | 2021-09-16 08:06:22 -0700 | |
commit | cb7a957f413a9af0651266769b5a6a4a9996aafa (patch) | |
tree | 98aa0dbd5d19c8cc7787bf79c54f4dc1264e4636 /examples/with-markdown-plugins | |
parent | c4634e5ea6f2c0e86216251831525497c9821daa (diff) | |
download | astro-cb7a957f413a9af0651266769b5a6a4a9996aafa.tar.gz astro-cb7a957f413a9af0651266769b5a6a4a9996aafa.tar.zst astro-cb7a957f413a9af0651266769b5a6a4a9996aafa.zip |
update examples for stackblitz (#1379)
Diffstat (limited to '')
-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. |