diff options
author | 2021-07-19 20:18:07 -0500 | |
---|---|---|
committer | 2021-07-19 18:18:07 -0700 | |
commit | 11100d62ef02a90ea9d0615b942e8839adc0ea45 (patch) | |
tree | 8c2282d8e7eb3f9b5bade91c5417356b705046a2 | |
parent | cd8b438c081cc8e034638b727c8eed323e4cfd80 (diff) | |
download | astro-11100d62ef02a90ea9d0615b942e8839adc0ea45.tar.gz astro-11100d62ef02a90ea9d0615b942e8839adc0ea45.tar.zst astro-11100d62ef02a90ea9d0615b942e8839adc0ea45.zip |
docs/fix: add language to code block (#761)
-rw-r--r-- | docs/src/pages/core-concepts/layouts.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/core-concepts/layouts.md b/docs/src/pages/core-concepts/layouts.md index cabd69be3..ca97f3b83 100644 --- a/docs/src/pages/core-concepts/layouts.md +++ b/docs/src/pages/core-concepts/layouts.md @@ -130,7 +130,7 @@ This blog post will be **rendered** inside of the `<PostLayout />` layout. Markdown pages always pass a `content` prop to their layout, which is useful to grab information about the page, title, metadata, table of contents headers, and more. -``` +```astro --- // src/layouts/PostLayout.astro const { content } = Astro.props; |