From 9dfb9c14454e6184cd7ff52f6b9f1beffbadf1e5 Mon Sep 17 00:00:00 2001 From: Stefan Buynov Date: Sat, 18 Mar 2017 17:16:25 +0200 Subject: [PATCH] Case insensitive translation of the 'more' tag when importing from Jekyll --- commands/import_jekyll.go | 2 +- commands/import_jekyll_test.go | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/commands/import_jekyll.go b/commands/import_jekyll.go index 071257d7..89fab8ba 100644 --- a/commands/import_jekyll.go +++ b/commands/import_jekyll.go @@ -518,7 +518,7 @@ func convertJekyllContent(m interface{}, content string) string { re *regexp.Regexp replace string }{ - {regexp.MustCompile(""), ""}, + {regexp.MustCompile("(?i)"), ""}, {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 >}}"}, diff --git a/commands/import_jekyll_test.go b/commands/import_jekyll_test.go index aae645df..899e17b1 100644 --- a/commands/import_jekyll_test.go +++ b/commands/import_jekyll_test.go @@ -88,6 +88,8 @@ func TestConvertJekyllContent(t *testing.T) { }{ {map[interface{}]interface{}{}, `Test content\n\npart2 content`, `Test content\n\npart2 content`}, + {map[interface{}]interface{}{}, + `Test content\n\npart2 content`, `Test content\n\npart2 content`}, {map[interface{}]interface{}{"excerpt_separator": ""}, `Test content\n\npart2 content`, `Test content\n\npart2 content`}, {map[interface{}]interface{}{}, "{% raw %}text{% endraw %}", "text"}, -- 2.30.2