Преглед на файлове

Fix the following shortcodes to work with new hugo ver: fileTree, ticks

zwbetz преди 6 години
родител
ревизия
5da8f5afe9
променени са 2 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 1 1
      layouts/shortcodes/fileTree.html
  2. 1 1
      layouts/shortcodes/ticks.html

+ 1 - 1
layouts/shortcodes/fileTree.html

@@ -1,3 +1,3 @@
 <div class="file-tree">
-  {{ .Inner }}
+  {{ .Inner | markdownify }}
 </div>

+ 1 - 1
layouts/shortcodes/ticks.html

@@ -1,3 +1,3 @@
 <div class="ticks">
-  {{ .Inner }}
+  {{ .Inner | markdownify }}
 </div>