This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#wrapper | |
.list-wrapper | |
ul.default-list.owl-carousel | |
-for (i = 0; i < 20; i++) | |
li.default-list-item | |
.default-list-preview | |
a(href="javascript:;") | |
img(src="https://picsum.photos/200?random"+i+1, alt="") | |
.default-list-content | |
h3.default-list-title |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/1.6.4/showdown.min.js"></script> | |
<script> | |
var converter = new showdown.Converter(); | |
var posts = document.querySelectorAll(".post-body"); | |
//定義要替換的字元 | |
var insteadWords = { | |
">": ">", | |
"<": "<", | |
"&": "&" | |
}; |