Remove []byte to string to []byte conversion in Asciidoc
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 10 Jul 2016 10:28:34 +0000 (12:28 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 10 Jul 2016 10:28:34 +0000 (12:28 +0200)
helpers/content.go

index 204a56104c51ae55008aaf08ea6ca15da24dd824..5b78832c34e24893220a200b4fd42c4fa52dac7d 100644 (file)
@@ -367,7 +367,7 @@ func RenderBytes(ctx *RenderingContext) []byte {
        case "markdown":
                return markdownRender(ctx)
        case "asciidoc":
-               return []byte(getAsciidocContent(ctx.Content))
+               return getAsciidocContent(ctx.Content)
        case "mmark":
                return mmarkRender(ctx)
        case "rst":
@@ -460,14 +460,14 @@ func HasAsciidoc() bool {
 
 // getAsciidocContent calls asciidoctor or asciidoc as an external helper
 // to convert AsciiDoc content to HTML.
-func getAsciidocContent(content []byte) string {
+func getAsciidocContent(content []byte) []byte {
        cleanContent := bytes.Replace(content, SummaryDivider, []byte(""), 1)
 
        path := getAsciidocExecPath()
        if path == "" {
                jww.ERROR.Println("asciidoctor / asciidoc not found in $PATH: Please install.\n",
                        "                 Leaving AsciiDoc content unrendered.")
-               return (string(content))
+               return content
        }
 
        jww.INFO.Println("Rendering with", path, "...")
@@ -479,7 +479,7 @@ func getAsciidocContent(content []byte) string {
                jww.ERROR.Println(err)
        }
 
-       return out.String()
+       return out.Bytes()
 }
 
 // HasRst returns whether rst2html is installed on this computer.