diff --git a/pkg/tfgen/installation_docs.go b/pkg/tfgen/installation_docs.go index 5282b3591..54d6ebf1b 100644 --- a/pkg/tfgen/installation_docs.go +++ b/pkg/tfgen/installation_docs.go @@ -53,8 +53,12 @@ func plainDocsParser(docFile *DocFile, g *Generator) ([]byte, error) { // Determine if we should write an overview header. overviewHeader := getOverviewHeader(content) + autoGenMessage := fmt.Sprint( + "\n") + // Add instructions to top of file - contentStr := frontMatter + installationInstructions + overviewHeader + string(content) + contentStr := frontMatter + autoGenMessage + installationInstructions + overviewHeader + string(content) //Translate code blocks to Pulumi contentStr, err = translateCodeBlocks(contentStr, g)