summaryrefslogtreecommitdiff
path: root/.changeset/lazy-pandas-love.md
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2025-01-30 03:21:41 -0800
committerGravatar GitHub <noreply@github.com> 2025-01-30 11:21:41 +0000
commitf6b7839411233c95af529eb0eee098c24e1d9d80 (patch)
tree88967bbd7760edfc1aba5d552bc91b8602d61aa0 /.changeset/lazy-pandas-love.md
parent2ab0a61024fa6631c35ee99a31f3c409d21dd95d (diff)
downloadastro-f6b7839411233c95af529eb0eee098c24e1d9d80.tar.gz
astro-f6b7839411233c95af529eb0eee098c24e1d9d80.tar.zst
astro-f6b7839411233c95af529eb0eee098c24e1d9d80.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to '.changeset/lazy-pandas-love.md')
-rw-r--r--.changeset/lazy-pandas-love.md24
1 files changed, 0 insertions, 24 deletions
diff --git a/.changeset/lazy-pandas-love.md b/.changeset/lazy-pandas-love.md
deleted file mode 100644
index 63e4ee2cd..000000000
--- a/.changeset/lazy-pandas-love.md
+++ /dev/null
@@ -1,24 +0,0 @@
----
-'@astrojs/markdown-remark': minor
----
-
-Adds support for TOML frontmatter in `.md` and `.mdx` files
-
-Astro 5.2 automatically identifies the format of your Markdown and MDX frontmatter based on the delimiter used. With `+++` as a delimiter (instead of the `---` YAML code fence), your frontmatter will automatically be recognized and parsed as [TOML](https://toml.io).
-
-This is useful for adding existing content files with TOML frontmatter to your project from another framework such as Hugo.
-
-TOML frontmatter can also be used with [content collections](https://docs.astro.build/guides/content-collections/), and files with different frontmatter languages can live together in the same project.
-
-No configuration is required to use TOML frontmatter in your content files. Your delimiter will indicate your chosen frontmatter language:
-
-```md
-+++
-date = 2025-01-30
-title = 'Use TOML frontmatter in Astro!'
-[author]
-name = 'Colin Bate'
-+++
-
-# Support for TOML frontmatter is here!
-```