diff options
-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 () => { |