Skip to content

Commit

Permalink
feat(highlight): add an option to switch stripIndent
Browse files Browse the repository at this point in the history
  • Loading branch information
uiolee committed Mar 30, 2024
1 parent f7908dd commit e2eea03
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/hexo/default_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ export = {
hljs: false,
line_threshold: 0,
first_line_number: 'always1',
disable_strip_indent: false
strip_indent: false
},
prismjs: {
preprocess: true,
line_number: true,
tab_replace: '',
exclude_languages: [],
disable_strip_indent: false
strip_indent: false
},
// Category & Tag
default_category: 'uncategorized',
Expand Down
2 changes: 1 addition & 1 deletion lib/plugins/highlight/highlight.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module.exports = function highlightFilter(this: Hexo, code: string, options: Opt
mark: options.mark,
tab: hljsCfg.tab_replace,
wrap: hljsCfg.wrap,
disableStripIndent: hljsCfg.disable_strip_indent
stripIndent: hljsCfg.strip_indent
};
if (hljsCfg.first_line_number === 'inline') {
if (typeof options.firstLineNumber !== 'undefined') {
Expand Down
2 changes: 1 addition & 1 deletion lib/plugins/highlight/prism.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = function(code, options) {
lineNumber,
mark: options.mark,
tab: prismjsCfg.tab_replace,
disableStripIndent: prismjsCfg.disable_strip_indent
stripIndent: prismjsCfg.strip_indent
};

if (!prismHighlight) prismHighlight = require('hexo-util').prismHighlight;
Expand Down

0 comments on commit e2eea03

Please sign in to comment.