Fix searching YAML/TOML delimiters in frontmatter
authorTatsushi Demachi <tdemachi@gmail.com>
Mon, 3 Aug 2015 14:32:51 +0000 (23:32 +0900)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 3 Aug 2015 16:30:55 +0000 (18:30 +0200)
When a YAML/TOML's delimiter character sequence is included in a
frontmatter string, parser mistakes it as a delimiter. This fixes it by
checking a character right before the delimiter sequence is '\n' or it
is the beginning of the frontmatter.

Fix #1320

parser/page.go
parser/parse_frontmatter_test.go

index 21014888fe7ab4fa68c3368161578a485ebd6a03..8ca784acbd2bbd57e5c7b21acd486682c9c459ab 100644 (file)
@@ -207,7 +207,7 @@ func extractFrontMatterDelims(r *bufio.Reader, left, right []byte) (fm FrontMatt
                switch c {
                case left[len(left)-1]:
                        if sameDelim { // YAML, TOML case
-                               if bytes.HasSuffix(buf.Bytes(), left) {
+                               if bytes.HasSuffix(buf.Bytes(), left) && (buf.Len() == len(left) || buf.Bytes()[buf.Len()-len(left)-1] == '\n') {
                                nextByte:
                                        c, err = r.ReadByte()
                                        if err != nil {
index 9ed2d8e5f5e6980ce73ffdb6887f14b748cf749f..999472c0bceb9147285558b0563c602da2c4a98e 100644 (file)
@@ -238,6 +238,7 @@ func TestExtractFrontMatter(t *testing.T) {
                {"---  \nminc\n--- \ncontent", []byte("---\nminc\n---\n"), true},
                {"---\ncnim\n---\ncontent\n", []byte("---\ncnim\n---\n"), true},
                {"---\ntitle: slug doc 2\nslug: slug-doc-2\n---\ncontent\n", []byte("---\ntitle: slug doc 2\nslug: slug-doc-2\n---\n"), true},
+               {"---\npermalink: '/blog/title---subtitle.html'\n---\ncontent\n", []byte("---\npermalink: '/blog/title---subtitle.html'\n---\n"), true},
        }
 
        for _, test := range tests {