docs
This commit is contained in:
parent
91ec0f7091
commit
7a92d7c223
|
@ -72,6 +72,31 @@ new Engine(...,{
|
|||
})
|
||||
```
|
||||
|
||||
### Alias
|
||||
|
||||
Alias settings
|
||||
|
||||
```ts
|
||||
//Use configuration
|
||||
new Engine(...,{
|
||||
config:{
|
||||
"alias":{
|
||||
text:'plain',
|
||||
sh:'bash',
|
||||
ts:'typescript',
|
||||
js:'javascript',
|
||||
py:'python',
|
||||
puml:'plantuml',
|
||||
uml:'plantuml',
|
||||
vb:'basic',
|
||||
md:'markdown',
|
||||
'c++':'cpp',
|
||||
'c#':'csharp',
|
||||
}
|
||||
}
|
||||
})
|
||||
```
|
||||
|
||||
## Command
|
||||
|
||||
```ts
|
||||
|
|
|
@ -72,6 +72,31 @@ new Engine(...,{
|
|||
})
|
||||
```
|
||||
|
||||
### 别名
|
||||
|
||||
别名设置
|
||||
|
||||
```ts
|
||||
//使用配置
|
||||
new Engine(...,{
|
||||
config:{
|
||||
"alias":{
|
||||
text: 'plain',
|
||||
sh: 'bash',
|
||||
ts: 'typescript',
|
||||
js: 'javascript',
|
||||
py: 'python',
|
||||
puml: 'plantuml',
|
||||
uml: 'plantuml',
|
||||
vb: 'basic',
|
||||
md: 'markdown',
|
||||
'c++': 'cpp',
|
||||
'c#': 'csharp',
|
||||
}
|
||||
}
|
||||
})
|
||||
```
|
||||
|
||||
## 命令
|
||||
|
||||
```ts
|
||||
|
|
|
@ -66,6 +66,31 @@ new Engine(...,{
|
|||
})
|
||||
```
|
||||
|
||||
### 别名
|
||||
|
||||
别名设置
|
||||
|
||||
```ts
|
||||
//使用配置
|
||||
new Engine(...,{
|
||||
config:{
|
||||
"alias":{
|
||||
text: 'plain',
|
||||
sh: 'bash',
|
||||
ts: 'typescript',
|
||||
js: 'javascript',
|
||||
py: 'python',
|
||||
puml: 'plantuml',
|
||||
uml: 'plantuml',
|
||||
vb: 'basic',
|
||||
md: 'markdown',
|
||||
'c++': 'cpp',
|
||||
'c#': 'csharp',
|
||||
}
|
||||
}
|
||||
})
|
||||
```
|
||||
|
||||
## 命令
|
||||
|
||||
```ts
|
||||
|
|
Loading…
Reference in New Issue