提交 fc5dba88 编写于 作者: U ULIVZ

feat($theme-default): support shortcut for sh and yml. (close: #1221)

Also, support lang tip for docker, dockerfile and makefile
上级 635e93bc
...@@ -17,6 +17,6 @@ $MQMobileNarrow = 419px ...@@ -17,6 +17,6 @@ $MQMobileNarrow = 419px
// code // code
$lineNumbersWrapperWidth = 3.5rem $lineNumbersWrapperWidth = 3.5rem
$codeLang = js ts html md vue css sass scss less stylus go java c sh yaml py $codeLang = js ts html md vue css sass scss less stylus go java c sh yaml py docker dockerfile makefile
@import '~@temp/palette.styl' @import '~@temp/palette.styl'
...@@ -30,6 +30,12 @@ module.exports = (str, lang) => { ...@@ -30,6 +30,12 @@ module.exports = (str, lang) => {
if (lang === 'py') { if (lang === 'py') {
lang = 'python' lang = 'python'
} }
if (lang === 'sh') {
lang = 'bash'
}
if (lang === 'yml') {
lang = 'yaml'
}
if (!prism.languages[lang]) { if (!prism.languages[lang]) {
try { try {
loadLanguages([lang]) loadLanguages([lang])
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册