commands: Import Octopress image tag in Jekyll importer
authorStefan Buynov <stefan.buynov@gmail.com>
Sat, 22 Apr 2017 20:35:52 +0000 (23:35 +0300)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 22 Apr 2017 20:35:52 +0000 (22:35 +0200)
commands/import_jekyll.go
commands/import_jekyll_test.go

index 89fab8ba3915535460151684beb1955cc158873e..7d503466e13b882f60e1256b4f9799ce1cef22e5 100644 (file)
@@ -528,5 +528,50 @@ func convertJekyllContent(m interface{}, content string) string {
                content = replace.re.ReplaceAllString(content, replace.replace)
        }
 
+       replaceListFunc := []struct {
+               re      *regexp.Regexp
+               replace func(string) string
+       }{
+               // Octopress image tag: http://octopress.org/docs/plugins/image-tag/
+               {regexp.MustCompile(`{%\s+img\s*(.*?)\s*%}`), replaceImageTag},
+       }
+
+       for _, replace := range replaceListFunc {
+               content = replace.re.ReplaceAllStringFunc(content, replace.replace)
+       }
+
        return content
 }
+
+func replaceImageTag(match string) string {
+       r := regexp.MustCompile(`{%\s+img\s*(\p{L}*)\s+([\S]*/[\S]+)\s+(\d*)\s*(\d*)\s*(.*?)\s*%}`)
+       result := bytes.NewBufferString("{{< figure ")
+       parts := r.FindStringSubmatch(match)
+       // Index 0 is the entire string, ignore
+       replaceOptionalPart(result, "class", parts[1])
+       replaceOptionalPart(result, "src", parts[2])
+       replaceOptionalPart(result, "width", parts[3])
+       replaceOptionalPart(result, "height", parts[4])
+       // title + alt
+       part := parts[5]
+       if len(part) > 0 {
+               splits := strings.Split(part, "'")
+               lenSplits := len(splits)
+               if lenSplits == 1 {
+                       replaceOptionalPart(result, "title", splits[0])
+               } else if lenSplits == 3 {
+                       replaceOptionalPart(result, "title", splits[1])
+               } else if lenSplits == 5 {
+                       replaceOptionalPart(result, "title", splits[1])
+                       replaceOptionalPart(result, "alt", splits[3])
+               }
+       }
+       result.WriteString(">}}")
+       return result.String()
+
+}
+func replaceOptionalPart(buffer *bytes.Buffer, partName string, part string) {
+       if len(part) > 0 {
+               buffer.WriteString(partName + "=\"" + part + "\" ")
+       }
+}
index 899e17b15b1f433ae5606f91fec5f4523e8570fc..90a05c01cac2ed49c5971bf9063b844844cb150e 100644 (file)
@@ -97,6 +97,26 @@ func TestConvertJekyllContent(t *testing.T) {
                {map[interface{}]interface{}{},
                        "{% highlight go %}\nvar s int\n{% endhighlight %}",
                        "{{< highlight go >}}\nvar s int\n{{< / highlight >}}"},
+
+               // Octopress image tag
+               {map[interface{}]interface{}{},
+                       "{% img http://placekitten.com/890/280 %}",
+                       "{{< figure src=\"http://placekitten.com/890/280\" >}}"},
+               {map[interface{}]interface{}{},
+                       "{% img left http://placekitten.com/320/250 Place Kitten #2 %}",
+                       "{{< figure class=\"left\" src=\"http://placekitten.com/320/250\" title=\"Place Kitten #2\" >}}"},
+               {map[interface{}]interface{}{},
+                       "{% img right http://placekitten.com/300/500 150 250 'Place Kitten #3' %}",
+                       "{{< figure class=\"right\" src=\"http://placekitten.com/300/500\" width=\"150\" height=\"250\" title=\"Place Kitten #3\" >}}"},
+               {map[interface{}]interface{}{},
+                       "{% img right http://placekitten.com/300/500 150 250 'Place Kitten #4' 'An image of a very cute kitten' %}",
+                       "{{< figure class=\"right\" src=\"http://placekitten.com/300/500\" width=\"150\" height=\"250\" title=\"Place Kitten #4\" alt=\"An image of a very cute kitten\" >}}"},
+               {map[interface{}]interface{}{},
+                       "{% img http://placekitten.com/300/500 150 250 'Place Kitten #4' 'An image of a very cute kitten' %}",
+                       "{{< figure src=\"http://placekitten.com/300/500\" width=\"150\" height=\"250\" title=\"Place Kitten #4\" alt=\"An image of a very cute kitten\" >}}"},
+               {map[interface{}]interface{}{},
+                       "{% img right /placekitten/300/500 'Place Kitten #4' 'An image of a very cute kitten' %}",
+                       "{{< figure class=\"right\" src=\"/placekitten/300/500\" title=\"Place Kitten #4\" alt=\"An image of a very cute kitten\" >}}"},
        }
 
        for _, data := range testDataList {