rst: fixing rst output processing
authortycho garen <garen@tychoish.com>
Tue, 9 Jul 2013 12:16:29 +0000 (08:16 -0400)
committertycho garen <garen@tychoish.com>
Tue, 9 Jul 2013 12:16:29 +0000 (08:16 -0400)
docs/content/doc/rst.rst [deleted file]
hugolib/page.go

diff --git a/docs/content/doc/rst.rst b/docs/content/doc/rst.rst
deleted file mode 100644 (file)
index 37e1357..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
----
-Markup: 'rst'
----
-
-
-==============
-This is a Test
-==============
-
-
-Really
-------
-
-text *here* and **HERE**.
index c21c1c3579eb5641ad985379a577db65bea61803..01a8545cfab897451b51c4c7625d7f890d53fba6 100644 (file)
@@ -409,9 +409,9 @@ func (page *Page) convertMarkdown(lines []string) {
 
 func (page *Page) convertRestructuredText(lines []string) {
 
-       page.RawMarkdown = strings.Join(lines, " ")
+       page.RawMarkdown = strings.Join(lines, "\n")
 
-       cmd := exec.Command("rst2html.py", "--template=/tmp/template.txt")
+       cmd := exec.Command("rst2html.py")
        cmd.Stdin = strings.NewReader(page.RawMarkdown)
        var out bytes.Buffer
        cmd.Stdout = &out
@@ -419,7 +419,13 @@ func (page *Page) convertRestructuredText(lines []string) {
                fmt.Println(err)
        }
 
-       content := out.String()
+       rstLines := strings.Split(out.String(), "\n")
+       for i, line := range rstLines {
+               if strings.HasPrefix(line, "<body>") {
+                       rstLines = (rstLines[i+1:len(rstLines)-3])
+               }
+       }
+       content := strings.Join(rstLines, "\n")
        page.Content = template.HTML(content)
        page.Summary = template.HTML(TruncateWordsToWholeSentence(StripHTML(StripShortcodes(content)), summaryLength))
 }