diff options
author | 2021-08-08 02:38:38 -0400 | |
---|---|---|
committer | 2021-08-07 23:38:38 -0700 | |
commit | 71882300b0447a0f4112d59cd4883982896e29d0 (patch) | |
tree | 333c1cf3695aea76f6b660df4233391f5f682f01 /docs/src/pages/reference/api-reference.md | |
parent | 3db90ea403b662af4c20d54ddacf98d9b31cbd77 (diff) | |
download | astro-71882300b0447a0f4112d59cd4883982896e29d0.tar.gz astro-71882300b0447a0f4112d59cd4883982896e29d0.tar.zst astro-71882300b0447a0f4112d59cd4883982896e29d0.zip |
Fix code examples that would fail if copy-pasted (#1050)
Diffstat (limited to 'docs/src/pages/reference/api-reference.md')
-rw-r--r-- | docs/src/pages/reference/api-reference.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/reference/api-reference.md b/docs/src/pages/reference/api-reference.md index f7e3f92bb..720df458f 100644 --- a/docs/src/pages/reference/api-reference.md +++ b/docs/src/pages/reference/api-reference.md @@ -42,7 +42,7 @@ const data = Astro.fetchContent('../pages/post/*.md'); // returns an array of po **/ astro: { headers: [], // an array of h1...h6 elements in the markdown file - source: '' // raw source of the markdown file + source: '', // raw source of the markdown file html: '' // rendered HTML of the markdown file }, url: '' // the rendered path |