hashnode 插件是否支持 Javascript?
首先我们编写一个简单的插件,命名为 'alert':
<script>
console.log('hello from widget');
let count = 0;
function click_button(){
let str = `click button from widget ${++count} times`;
console.log(str);
document.getElementById("demo").innerHTML = str;
...
blog.iread.fun1 min read