hexo-renderer-disable-tag-plugins
v0.1.1
Published
Disable tag plugins for Hexo
Downloads
2
Maintainers
Readme
hexo-renderer-disable-tag-plugins
For Markdown rendering, disable the tag plugins, in case you don't want hexo to process the markdown with nunjucks syntax, which is used by default.
Installation
$ npm install hexo-renderer-disable-tag-plugins --save
- Hexo 3: >= 0.2
- Hexo 2: 0.1.x
How to use
After installation, make sure to put the package at the end of all the renderers.
package.json
:
{
"name": "xxxxx",
"version": "0.0.0",
"private": true,
"hexo": {
"version": "3.8.0"
},
"dependencies": {
"clean-css": "^4.2.1",
"hexo": "^3.8.0",
"hexo-all-minifier": "^0.5.3",
"hexo-deployer-git": "^0.3.1",
"hexo-filter-github-emojis": "^2.0.0",
"hexo-generator-archive": "^0.1.4",
"hexo-generator-category": "^0.1.3",
"hexo-generator-index": "^0.2.0",
"hexo-generator-json-content": "^2.2.0",
"hexo-generator-tag": "^0.2.0",
"hexo-renderer-ejs": "^0.3.1",
"hexo-renderer-marked": "^0.2.10",
"hexo-renderer-stylus": "^0.3.1",
"hexo-renderer-disable-tag-plugins": "^0.1.1",
"hexo-server": "^0.2.0",
"uglify-es": "^3.3.9"
}
}