Case insensitive translation of the 'more' tag when importing from Jekyll
authorStefan Buynov <stefan.buynov@gmail.com>
Sat, 18 Mar 2017 15:16:25 +0000 (17:16 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 18 Mar 2017 15:16:25 +0000 (16:16 +0100)
commands/import_jekyll.go
commands/import_jekyll_test.go

index 071257d7d3d5cd7a98e7cdb9bc3e7a2c7968ec7e..89fab8ba3915535460151684beb1955cc158873e 100644 (file)
@@ -518,7 +518,7 @@ func convertJekyllContent(m interface{}, content string) string {
                re      *regexp.Regexp
                replace string
        }{
-               {regexp.MustCompile("<!-- more -->"), "<!--more-->"},
+               {regexp.MustCompile("(?i)<!-- more -->"), "<!--more-->"},
                {regexp.MustCompile(`\{%\s*raw\s*%\}\s*(.*?)\s*\{%\s*endraw\s*%\}`), "$1"},
                {regexp.MustCompile(`{%\s*highlight\s*(.*?)\s*%}`), "{{< highlight $1 >}}"},
                {regexp.MustCompile(`{%\s*endhighlight\s*%}`), "{{< / highlight >}}"},
index aae645df2e402d1899f400d369295723f6dd110e..899e17b15b1f433ae5606f91fec5f4523e8570fc 100644 (file)
@@ -88,6 +88,8 @@ func TestConvertJekyllContent(t *testing.T) {
        }{
                {map[interface{}]interface{}{},
                        `Test content\n<!-- more -->\npart2 content`, `Test content\n<!--more-->\npart2 content`},
+               {map[interface{}]interface{}{},
+                       `Test content\n<!-- More -->\npart2 content`, `Test content\n<!--more-->\npart2 content`},
                {map[interface{}]interface{}{"excerpt_separator": "<!--sep-->"},
                        `Test content\n<!--sep-->\npart2 content`, `Test content\n<!--more-->\npart2 content`},
                {map[interface{}]interface{}{}, "{% raw %}text{% endraw %}", "text"},