hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit bfce30d85972c27c27e8a2caac9db6315f813298
parent 30e14cc31678ddc204b082ab362f86b6b8063881
Author: Frank Braun <frank@cryptogroup.net>
Date:   Tue, 27 Jun 2017 10:26:33 +0000

helpers: add --initial-header-level=2 to rst2html (#3528)

reStructuredText doesn't have explicit section levels but sets them in
the order of appearance. Since level 1 is already set from the title in
the front matter it makes more sense to start with level 2 when
converting with rst2html.
Diffstat:
Mhelpers/content.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/helpers/content.go b/helpers/content.go
@@ -637,7 +637,7 @@ func getRstContent(ctx *RenderingContext) []byte {
 	}
 
 	jww.INFO.Println("Rendering", ctx.DocumentName, "with", path, "...")
-	cmd := exec.Command(python, path, "--leave-comments")
+	cmd := exec.Command(python, path, "--leave-comments", "--initial-header-level=2")
 	cmd.Stdin = bytes.NewReader(cleanContent)
 	var out, cmderr bytes.Buffer
 	cmd.Stdout = &out