UNPKG

hexo-pangu

Version:

Server side pangu.js filter for Hexo.

14 lines (9 loc) 300 B
/* global hexo */ 'use strict'; const spacing = require('./lib/filter'); const { NodePangu } = require('pangu'); const pangu = new NodePangu(); hexo.extend.filter.register('after_post_render', data => { data.content = spacing(data.content); data.title = pangu.spacingText(data.title); }, 8);