diff --git a/docs/source/nested/index.md b/docs/source/nested/index.md index 4143057..53c1f87 100644 --- a/docs/source/nested/index.md +++ b/docs/source/nested/index.md @@ -2,4 +2,4 @@ title: Nested content --- -This bucket is an example of nested content. Head down the tree to see how it works. +This bucket is an example of nested content. Head down the tree to see how it works. \ No newline at end of file diff --git a/src/Elastic.Markdown/DocumentationGenerator.cs b/src/Elastic.Markdown/DocumentationGenerator.cs index bc6e74e..fa4ebcc 100644 --- a/src/Elastic.Markdown/DocumentationGenerator.cs +++ b/src/Elastic.Markdown/DocumentationGenerator.cs @@ -109,10 +109,7 @@ await Parallel.ForEachAsync(DocumentationSet.Files, ctx, async (file, token) => var item = Interlocked.Increment(ref handledItems); var outputFile = OutputFile(file.RelativePath); if (file is MarkdownFile markdown) - { - await markdown.ParseFullAsync(token); await HtmlWriter.WriteAsync(outputFile, markdown, token); - } else { if (outputFile.Directory is { Exists: false })