return markdownRenderWithTOC(ctx)
case "markdown":
return markdownRenderWithTOC(ctx)
+ case "asciidoc":
+ return []byte(GetAsciidocContent(ctx.Content))
case "rst":
return []byte(GetRstContent(ctx.Content))
}
return markdownRender(ctx)
case "markdown":
return markdownRender(ctx)
+ case "asciidoc":
+ return []byte(GetAsciidocContent(ctx.Content))
case "rst":
return []byte(GetRstContent(ctx.Content))
}
return strings.Join(words[:max], " "), true
}
+// GetAsciidocContent calls asciidoctor or asciidoc as an external helper
+// to convert AsciiDoc content to HTML.
+func GetAsciidocContent(content []byte) string {
+ cleanContent := bytes.Replace(content, SummaryDivider, []byte(""), 1)
+
+ path, err := exec.LookPath("asciidoctor")
+ if err != nil {
+ path, err = exec.LookPath("asciidoc")
+ if err != nil {
+ jww.ERROR.Println("asciidoctor / asciidoc not found in $PATH: Please install.\n",
+ " Leaving AsciiDoc content unrendered.")
+ return (string(content))
+ }
+ }
+
+ jww.INFO.Println("Rendering with", path, "...")
+ cmd := exec.Command(path, "--safe", "-")
+ cmd.Stdin = bytes.NewReader(cleanContent)
+ var out bytes.Buffer
+ cmd.Stdout = &out
+ if err := cmd.Run(); err != nil {
+ jww.ERROR.Println(err)
+ }
+
+ asciidocLines := strings.Split(out.String(), "\n")
+ for i, line := range asciidocLines {
+ if strings.HasPrefix(line, "<body") {
+ asciidocLines = (asciidocLines[i+1 : len(asciidocLines)-3])
+ }
+ }
+ return strings.Join(asciidocLines, "\n")
+}
+
// GetRstContent calls the Python script rst2html as an external helper
// to convert reStructuredText content to HTML.
func GetRstContent(content []byte) string {
func (h asciidocHandler) PageConvert(p *Page, t tpl.Template) HandledResult {
p.ProcessShortcodes(t)
- // TODO(spf13) Add Ascii Doc Logic here
+ // TODO(spf13) Add/Refactor AsciiDoc Logic here
+ tmpContent, tmpTableOfContents := helpers.ExtractTOC(p.renderContent(helpers.RemoveSummaryDivider(p.rawContent)))
+
+ if len(p.contentShortCodes) > 0 {
+ tmpContentWithTokensReplaced, err := replaceShortcodeTokens(tmpContent, shortcodePlaceholderPrefix, true, p.contentShortCodes)
+
+ if err != nil {
+ jww.FATAL.Printf("Fail to replace short code tokens in %s:\n%s", p.BaseFileName(), err.Error())
+ return HandledResult{err: err}
+ } else {
+ tmpContent = tmpContentWithTokensReplaced
+ }
+ }
+
+ p.Content = helpers.BytesToHTML(tmpContent)
+ p.TableOfContents = helpers.BytesToHTML(tmpTableOfContents)
//err := p.Convert()
return HandledResult{page: p, err: nil}