hexo-renderer-markdown-it
hexo-renderer-markdown-it copied to clipboard
Markdown-it is a Markdown parser, done right. A faster and CommonMark compliant alternative for Hexo.
在hexo配置文件中加上这个,想要实现`breaks: true`的效果,即回车自动换行。 ``` markdown: render: html: true xhtmlOut: false breaks: true linkify: true typographer: true quotes: '“”‘’' plugins: - markdown-it-abbr - markdown-it-footnote - markdown-it-ins - markdown-it-sub - markdown-it-sup anchors: level:...
Bumps [markdown-it](https://github.com/markdown-it/markdown-it) from 12.3.2 to 13.0.1. Changelog Sourced from markdown-it's changelog. [13.0.1] - 2022-05-03 Fixed Bumped linkify-it to 4.0.1. That should fix some hangs, caused by wrong data, returned from...
In `markdown-it-anchor`, the "level" option can be an array of levels: https://github.com/valeriangalliat/markdown-it-anchor#usage. But here it has to be an integer. It would be good to support it in this plugin...
Currently, anchors are generated even on index pages, e.g.:  I think this is not the correct behavior. Contents in index pages, or pages such as `/tag/TAG` are meant to...
Add image options to support prepend root / post asset. and image lazy load attribute. ## Usage ```yaml # site config file ... markdown: image: prependRoot: true # whether perpend...

I refered an image like this: ```js  ``` But I don't want to show the caption in the markdown render result. What should I do? I...
I just noticed on my website, [linked markdown](https://gist.githubusercontent.com/andretietz/2d54504084afb2a9b81ddc09cd24b3cc/raw/48e27e5d5dc5f25070e4d34a431276a67a7c5126/TEST.md) is not correctly interpreted into html. ([See website article with the problem.](https://andretietz.com/2020/10/09/custom-retrofit2-annotations/#ProxyCallAdapter)) Also, I noticed that every linebreak in markdown is translated...
when I changed default markdown engine to this, the grammar highlight disabled. how can i resolve it?