如何将短代码添加到blogspot?

wj *_* R. 6 css jquery blogger blogspot shortcode

是否可以在博客中创建短代码?就像是:

[item]contents[/item] 
Run Code Online (Sandbox Code Playgroud)

要么

[img class='someClass']yourimagelink[/img]
Run Code Online (Sandbox Code Playgroud)

Sha*_*shy 0

我的博客技巧最近为博客创建了一堆简码。您可以在这里查看它们。

创建您自己的短代码

您可以使用Shortcode.js为您的网站创建短代码 以下是创建[item]contents[/item]短代码的方法。运行代码以查看其实际效果。

new Shortcode(document.querySelector('body'), {
  item: function(done) {
    return this.contents;
  }
});
Run Code Online (Sandbox Code Playgroud)
<script src="https://rawgit.com/nicinabox/shortcode.js/master/src/Shortcode.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
[item]Sample text[item]
Run Code Online (Sandbox Code Playgroud)