UNPKG

njsbtguide

Version:

Playground

17 lines (12 loc) 420 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});