diff options
author | 2023-10-24 07:43:49 +0000 | |
---|---|---|
committer | 2023-10-24 07:43:49 +0000 | |
commit | 678ba54056fa1a911f6c11455a0ca6aec2282df8 (patch) | |
tree | 940cdd624aeb4cd21e97c27d085e14d4b1aee259 | |
parent | 73b8d60f8c3eeae74035202b0ea0d4848e736c7d (diff) | |
download | astro-678ba54056fa1a911f6c11455a0ca6aec2282df8.tar.gz astro-678ba54056fa1a911f6c11455a0ca6aec2282df8.tar.zst astro-678ba54056fa1a911f6c11455a0ca6aec2282df8.zip |
[ci] format
-rw-r--r-- | packages/integrations/markdoc/README.md | 6 | ||||
-rw-r--r-- | packages/integrations/markdoc/test/render.test.js | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/packages/integrations/markdoc/README.md b/packages/integrations/markdoc/README.md index fa506b24a..fd32b8f97 100644 --- a/packages/integrations/markdoc/README.md +++ b/packages/integrations/markdoc/README.md @@ -478,17 +478,17 @@ When using nested tags in Markdoc, it can be helpful to indent the content insid ```md # Welcome to Markdoc with indented tags 👋 + # Note: Can use either spaces or tabs for indentation {% custom-tag %} - {% custom-tag %} - ### Tags can be indented for better readability +{% custom-tag %} ### Tags can be indented for better readability {% another-custom-tag %} This is easier to follow when there is a lot of nesting {% /another-custom-tag %} - {% /custom-tag %} +{% /custom-tag %} {% /custom-tag %} ``` diff --git a/packages/integrations/markdoc/test/render.test.js b/packages/integrations/markdoc/test/render.test.js index 97c441b85..3ac9c3ac4 100644 --- a/packages/integrations/markdoc/test/render.test.js +++ b/packages/integrations/markdoc/test/render.test.js @@ -56,7 +56,6 @@ describe('Markdoc - render', () => { renderIndentedComponentsChecks(html); await server.stop(); - }); it('renders content - with `render: null` in document', async () => { |