소스 검색

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>