猿问

在 Visual Studio Code 中向 django-html 文件添加格式化程序(美化器)

我在 Jinja 模板(VS Code)上使用 Django 扩展进行智能感知和语法突出显示,但无法弄清楚如何使用我的默认格式化程序(HookyQR Beautify)来美化/格式化我的 django-html 文件。这可能吗?



慕仙森
浏览 267回答 3
3回答

心有法竹

我只需要对django-html文件使用beautify,我对js、html、css使用了prettier,然后对python使用了flake8和autopep8,对于django-htmlprettier错误地格式化了jinja模板字符串,所以我禁用了django-html较小的语言,对我来说效果很好。{    "prettier.disableLanguages": ["django-html"],    "beautify.language": {      "html": [        "django-html"      ]    },    "[django-html]": {      "editor.formatOnSave": true,      "editor.defaultFormatter": "HookyQR.beautify"    }  }

猛跑小猪

这似乎已经为我排序了,允许我为普通 HTML 文件保留 HookyQR Beautify,并为 django-html 文件保留一个单独的 HookyQR Beautify:"beautify.language": {    "html": [        "django-html"    ]}

慕田峪9158850

根据 VS Code,HookyQR Beautify 已被弃用。
随时随地看视频慕课网APP

相关分类

Html5
我要回答