diff options
author | 2022-08-10 08:28:48 +0900 | |
---|---|---|
committer | 2022-08-09 16:28:48 -0700 | |
commit | fe3b423982faa87c106e6a072bb14cb0a6678064 (patch) | |
tree | fea50c098c6f1caf571498ea627e295a1ef3f9b9 | |
parent | d4ad40987589299fb3a94aed8700caed29cfbb35 (diff) | |
download | astro-fe3b423982faa87c106e6a072bb14cb0a6678064.tar.gz astro-fe3b423982faa87c106e6a072bb14cb0a6678064.tar.zst astro-fe3b423982faa87c106e6a072bb14cb0a6678064.zip |
Markdown component: fix package name in readme.md (#4208)
* Markdown component: fix package name in readme.md
readme says it's `@astrojs/markdown`, but package name is actually `@astrojs/markdown-component`.
* Create dry-deers-vanish.md
* Update dry-deers-vanish.md
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
Co-authored-by: Fred K. Schott <fkschott@gmail.com>
-rw-r--r-- | .changeset/dry-deers-vanish.md | 5 | ||||
-rw-r--r-- | packages/markdown/component/readme.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.changeset/dry-deers-vanish.md b/.changeset/dry-deers-vanish.md new file mode 100644 index 000000000..7245dcd76 --- /dev/null +++ b/.changeset/dry-deers-vanish.md @@ -0,0 +1,5 @@ +--- +"@astrojs/markdown-component": patch +--- + +README update diff --git a/packages/markdown/component/readme.md b/packages/markdown/component/readme.md index aa48e274d..1eae678d7 100644 --- a/packages/markdown/component/readme.md +++ b/packages/markdown/component/readme.md @@ -1,4 +1,4 @@ -# @astrojs/markdown +# @astrojs/markdown-component This package brings legacy support for the `<Markdown />` component to all Astro projects. |