diff --git a/scripts/filters/tag-handle.js b/scripts/filters/tag-handle.js deleted file mode 100644 index 6ccddfb..0000000 --- a/scripts/filters/tag-handle.js +++ /dev/null @@ -1,13 +0,0 @@ -/* global hexo */ - -'use strict' - -hexo.extend.filter.register( - 'after_post_render', - function (data) { - data.content = data.content.replace(/::::::/gim, function (match, attrBegin, src, attrEnd) { - return `
` - }) - }, - 1 -)