New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

aomao_plugin-codeblock

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aomao_plugin-codeblock

代码块

latest
Source
npmnpm
Version
2.7.37
Version published
Maintainers
1
Created
Source

aomao_plugin-codeblock

代码块插件

安装

$ yarn add aomao_plugin-codeblock

Vue 使用

$ yarn add aomao_plugin-codeblock-vue

添加到引擎

import Engine, { EngineInterface } from 'aomao_engine';
import CodeBlock , { CodeBlockComponent } from 'aomao_plugin-codeblock';

new Engine(...,{ plugins:[CodeBlock] , cards:[CodeBlockComponent]})

可选项

快捷键

默认无快捷键

//快捷键,key 组合键,args,执行参数,[mode?: string, value?: string] 语言模式:可选,代码文本:可选
hotkey?:string | {key:string,args:Array<string>};//默认无

//使用配置
new Engine(...,{
    config:{
        "codeblock":{
            //修改快捷键
            hotkey:{
                key:"mod+b",
                args:["javascript","const test = 123;"]
            }
        }
    }
 })

Markdown

默认支持 markdown,传入false关闭

CodeBlock 插件 markdown 语法为```

markdown?: boolean;//默认开启,false 关闭
//使用配置
new Engine(...,{
    config:{
        "codeblock":{
            //关闭markdown
            markdown:false
        }
    }
 })

别名

别名设置

//使用配置
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',
        }
    }
 })

命令

//可携带两个参数,语言类型,默认文本,都是可选的
engine.command.execute('codeblock', 'javascript', 'const test = 123;');

Keywords

codeblock

FAQs

Package last updated on 21 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts