UNPKG

theme-lx

Version:

A simle & clear & elegant hexo theme

17 lines (12 loc) 437 B
/** * note.js | https://theme-next.org/docs/tag-plugins/note/ */ /* global hexo */ "use strict"; function postNote(args, content) { return `<div class="note ${args.join(" ")}"> ${hexo.render.renderSync({text: content, engine: "markdown"}).split("\n").join("")} </div>`; } hexo.extend.tag.register("note", postNote, {ends: true}); hexo.extend.tag.register("subnote", postNote, {ends: true});