njsbtguide
Version:
Playground
17 lines (12 loc) • 420 B
JavaScript
/**
* note.js | https://theme-next.org/docs/tag-plugins/note
*/
/* global hexo */
;
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});