Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ADD: Additional languages #102

Merged
merged 8 commits into from
Apr 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion docs/languages.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export type Lang =
| 'abap'
| 'actionscript-3'
| 'ada'
| 'apache'
| 'apex'
| 'apl'
| 'applescript'
Expand All @@ -47,6 +48,7 @@ export type Lang =
| 'erb'
| 'erlang'
| 'fsharp' | 'f#'
| 'gherkin'
| 'git-commit'
| 'git-rebase'
| 'gnuplot'
Expand Down Expand Up @@ -79,6 +81,8 @@ export type Lang =
| 'markdown' | 'md'
| 'matlab'
| 'mdx'
| 'nginx'
| 'nim'
| 'nix'
| 'objective-c' | 'objc'
| 'objective-cpp'
Expand All @@ -97,6 +101,7 @@ export type Lang =
| 'r'
| 'raku' | 'perl6'
| 'razor'
| 'riscv'
| 'ruby' | 'rb'
| 'rust'
| 'sas'
Expand All @@ -107,21 +112,26 @@ export type Lang =
| 'shaderlab' | 'shader'
| 'shellscript' | 'shell' | 'bash' | 'sh' | 'zsh'
| 'smalltalk'
| 'solidity'
| 'sql'
| 'ssh-config'
| 'stylus' | 'styl'
| 'svelte'
| 'swift'
| 'system-verilog'
| 'tcl'
| 'toml'
| 'tsx'
| 'twig'
| 'typescript' | 'ts'
| 'vb' | 'cmd'
| 'verilog'
| 'vhdl'
| 'viml'
| 'vue'
| 'wasm'
| 'wenyan' | '文言'
| 'xml'
| 'xsl'
| 'yaml'
```
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build": "lerna run build --include-dependencies",
"watch": "lerna run watch --parallel",
"fmt": "prettier --parser=typescript --write packages/**/*.ts",
"test": "jest --colors",
"test": "jest --colors --clearCache",
"gen": "yarn workspace shiki-site gen",
"release": "lerna publish",
"update": "npm run update:themes && npm run update:grammars",
Expand Down
Loading