fix(smartypants): utilise escapeHTML()

- breaking change of marked v4
  * https://github.com/markedjs/marked/releases/tag/v4.0.0
This commit is contained in:
Ming Di Leom 2022-03-02 08:16:50 +00:00
parent 834a75bba0
commit 4fca3c6cf9
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
1 changed files with 13 additions and 13 deletions

View File

@ -1,4 +1,4 @@
const { escape } = require('marked/src/helpers');
const { escapeHTML: escape } = require('hexo-util')
// https://github.com/markedjs/marked/blob/b6773fca412c339e0cedd56b63f9fa1583cfd372/src/Lexer.js#L8-L24
// Replace dashes only
@ -19,22 +19,22 @@ const smartypants = (str) => {
// ellipses
.replace(/\.{3}/g, '\u2026')
// right arrow
.replace(/->/g, '\u2192');
};
.replace(/->/g, '\u2192')
}
hexo.extend.filter.register('marked:tokenizer', function(tokenizer) {
const { smartypants: isSmarty } = this.config.marked;
tokenizer.inlineText = function(src) {
const { rules } = this;
hexo.extend.filter.register('marked:tokenizer', function (tokenizer) {
const { smartypants: isSmarty } = this.config.marked
tokenizer.inlineText = function (src) {
const { rules } = this
// https://github.com/markedjs/marked/blob/b6773fca412c339e0cedd56b63f9fa1583cfd372/src/Tokenizer.js#L643-L658
const cap = rules.inline.text.exec(src);
const cap = rules.inline.text.exec(src)
if (cap) {
let text;
let text
if (this.lexer.state.inRawBlock) {
text = cap[0];
text = cap[0]
} else {
text = escape(isSmarty ? smartypants(cap[0]) : cap[0]);
text = escape(isSmarty ? smartypants(cap[0]) : cap[0])
}
return {
// `type` value is a corresponding renderer method
@ -42,7 +42,7 @@ hexo.extend.filter.register('marked:tokenizer', function(tokenizer) {
type: 'text',
raw: cap[0],
text
};
}
}
}
});
})