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
227
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.10.1
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;"]
            }
        }
    }
 })

别名

别名设置

//使用配置
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 24 Mar 2023

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