Hexo 代码块中tab替换space 发表于 2021-02-07 更新于 2021-03-18 分类于 Hexo 阅读次数: Valine: 本文字数: 71 阅读时长 ≈ 1 分钟 将 Hexo文章代码块中的tab替换成space 步骤 打开站点配置文件_config.yml 修改tab_replace: ' ' 配置后12345highlight: enable: true line_number: true auto_detect: false tab_replace: ' ' 12345678#include <iostream>using namespace std;int main(){ cout << "Hello World"; return 0;}