Skip to content

Markdown-it is a markdown parser, done right. A faster and CommonMark compliant alternative for Hexo.

License

Notifications You must be signed in to change notification settings

D-Sketon/hexo-renderer-markdown-it-plus

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@reimujs/hexo-renderer-markdown-it-plus

This renderer plugin uses Markdown-it as a render engine on Hexo.

This renderer plugin is forked from hexo-renderer-markdown-it-plus, designed for hexo-theme-reimu.

The highlight.js has been removed, the KaTeX version has been upgraded, and the client-side rendering of LaTeX formulas is supported.

Main Features

Install

npm un hexo-renderer-marked --save
npm i @reimujs/hexo-renderer-markdown-it-plus --save

Options

Configuring the renderer is a fairly simple task because all the settings are in the main hexo _config.yml file. You just need to open it in your favourite text editor and write down your configuration.

markdown_it_plus:
    html: true
    xhtmlOut: true
    breaks: true
    langPrefix:
    linkify: true
    typographer:
    quotes: “”‘’
    rawLaTeX: false # newly added

Katex

Katex plugin is enabled by default. However, this renderer alone does not work out of the box for mathematical formulas to display correctly on your website. Therefore, you do not need to do anything if you do not want to use Katex. Otherwise, if you want to use katex, you must add this css style to your website: https://npm.webcache.cn/[email protected]/dist/katex.min.css

Advanced Options

The markdown-it plugins listed above is enabled by default. If you want to disable any plugin, see the configuration example below:

markdown_it_plus:
    html: true
    xhtmlOut: true
    breaks: true
    langPrefix:
    linkify: true
    typographer:
    quotes: “”‘’
    rawLaTeX: false
    plugins:
        - plugin:
            name: markdown-it-mark
            enable: false

plugins enabled by default:

  • markdown-it-emoji
  • markdown-it-sub
  • markdown-it-sup
  • markdown-it-deflist
  • markdown-it-abbr
  • markdown-it-footnote
  • markdown-it-ins
  • markdown-it-mark
  • @vscode/markdown-it-katex
  • markdown-it-toc-and-anchor

Add other markdown-it Plugins

If you want to add a plugin named as markdown-it-something:

1.Install this plugin

npm install markdown-it-something --save

2.config main hexo _config.yml

markdown_it_plus:
    # ...
    plugins:
        - plugin:
            name: markdown-it-something
            enable: true
            options:
                # this is plugin option

About

Markdown-it is a markdown parser, done right. A faster and CommonMark compliant alternative for Hexo.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 100.0%