diff --git a/product_docs/docs/livecompare/1.17/index.mdx b/product_docs/docs/livecompare/1.17/index.mdx index f221d614550..79cde720ada 100644 --- a/product_docs/docs/livecompare/1.17/index.mdx +++ b/product_docs/docs/livecompare/1.17/index.mdx @@ -1,5 +1,4 @@ --- -navTitle: LiveCompare navigation: - index - requirements @@ -11,13 +10,15 @@ navigation: - settings - appendix_a - appendix_b -title: Introduction +title: LiveCompare originalFilePath: index.md --- © Copyright EnterpriseDB UK Limited 2019-2021 - All rights reserved. +# Introduction + LiveCompare is designed to compare any number of databases to verify they are identical. The tool compares any number databases and generates a comparison report, a list of differences and handy DML scripts so the user can optionally diff --git a/scripts/source/livecompare.js b/scripts/source/livecompare.js index 9d4179242d9..a28a8d40542 100644 --- a/scripts/source/livecompare.js +++ b/scripts/source/livecompare.js @@ -97,7 +97,7 @@ function livecompareTransformer() { { const node = tree.children[i]; if (node.type !== "jsx") stub = false; - if (node.type === "heading" && node.depth === 1) + if (node.type === "heading" && node.depth === 1 && !title) { title = mdast2string(node); tree.children.splice(i--,1);