mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-17 21:01:26 +02:00
Fix parsing edge case of frontmatter
When the frontmatter contains a - (or other delimiter) close to the closing frontmatter delimiter, frontmatter detection would fail.
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
package transform
|
||||
|
||||
import (
|
||||
htmltran "code.google.com/p/go-html-transform/html/transform"
|
||||
"io"
|
||||
"net/url"
|
||||
htmltran "code.google.com/p/go-html-transform/html/transform"
|
||||
)
|
||||
|
||||
type Transformer struct {
|
||||
|
@@ -1,23 +1,23 @@
|
||||
package transform
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"strings"
|
||||
"bytes"
|
||||
"strings"
|
||||
"testing"
|
||||
)
|
||||
|
||||
const H5_JS_CONTENT_DOUBLE_QUOTE = "<!DOCTYPE html><html><head><script src=\"foobar.js\"></script></head><body><nav><h1>title</h1></nav><article>content <a href='/foobar'>foobar</a>. Follow up</article></body></html>"
|
||||
const H5_JS_CONTENT_SINGLE_QUOTE = "<!DOCTYPE html><html><head><script src='foobar.js'></script></head><body><nav><h1>title</h1></nav><article>content <a href='/foobar'>foobar</a>. Follow up</article></body></html>"
|
||||
const H5_JS_CONTENT_ABS_URL = "<!DOCTYPE html><html><head><script src=\"http://user@host:10234/foobar.js\"></script></head><body><nav><h1>title</h1></nav><article>content <a href=\"https://host/foobar\">foobar</a>. Follow up</article></body></html>"
|
||||
|
||||
// URL doesn't recognize authorities. BUG?
|
||||
//const H5_JS_CONTENT_ABS_URL = "<!DOCTYPE html><html><head><script src=\"//host/foobar.js\"></script></head><body><nav><h1>title</h1></nav><article>content <a href=\"https://host/foobar\">foobar</a>. Follow up</article></body></html>"
|
||||
|
||||
const CORRECT_OUTPUT_SRC_HREF = "<!DOCTYPE html><html><head><script src=\"http://base/foobar.js\"></script></head><body><nav><h1>title</h1></nav><article>content <a href=\"http://base/foobar\">foobar</a>. Follow up</article></body></html>"
|
||||
|
||||
|
||||
func TestAbsUrlify(t *testing.T) {
|
||||
tests := []struct {
|
||||
content string
|
||||
content string
|
||||
expected string
|
||||
}{
|
||||
{H5_JS_CONTENT_DOUBLE_QUOTE, CORRECT_OUTPUT_SRC_HREF},
|
||||
@@ -29,13 +29,13 @@ func TestAbsUrlify(t *testing.T) {
|
||||
tr := &Transformer{
|
||||
BaseURL: "http://base",
|
||||
}
|
||||
out := new(bytes.Buffer)
|
||||
err := tr.Apply(strings.NewReader(test.content), out)
|
||||
if err != nil {
|
||||
t.Errorf("Unexpected error: %s", err)
|
||||
}
|
||||
if test.expected != string(out.Bytes()) {
|
||||
t.Errorf("Expected:\n%s\nGot:\n%s", test.expected, string(out.Bytes()))
|
||||
out := new(bytes.Buffer)
|
||||
err := tr.Apply(strings.NewReader(test.content), out)
|
||||
if err != nil {
|
||||
t.Errorf("Unexpected error: %s", err)
|
||||
}
|
||||
if test.expected != string(out.Bytes()) {
|
||||
t.Errorf("Expected:\n%s\nGot:\n%s", test.expected, string(out.Bytes()))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user