2021-10-14 06:13:50 +08:00
---
description: Add some colorful syntax highlighting to your code blocks.
2021-10-15 03:20:21 +08:00
icon: terminal-box-fill
2021-10-14 06:13:50 +08:00
---
2021-04-02 06:07:40 +08:00
# CodeBlockLowlight
[![Version ](https://img.shields.io/npm/v/@tiptap/extension-code-block-lowlight.svg?label=version )](https://www.npmjs.com/package/@tiptap/extension-code-block-lowlight)
[![Downloads ](https://img.shields.io/npm/dm/@tiptap/extension-code-block-lowlight.svg )](https://npmcharts.com/compare/@tiptap/extension-code-block-lowlight?minimal=true)
With the CodeBlock extension you can add fenced code blocks to your documents. It’ ll wrap the code in `<pre>` and `<code>` HTML tags.
Type < code > ``` </ code > (three backticks and a space) or < code > ∼∼∼ </ code > (three tildes and a space) and a code block is instantly added for you. You can even specify the language, try writing < code > ``` css </ code > . That should add a `language-css` class to the `<code>` -tag.
## Installation
```bash
# with npm
npm install @tiptap/extension -code-block-lowlight
# with Yarn
yarn add @tiptap/extension -code-block-lowlight
```
## Settings
2021-10-02 07:20:09 +08:00
### HTMLAttributes
Custom HTML attributes that should be added to the rendered HTML tag.
```js
CodeBlockLowlight.configure({
HTMLAttributes: {
class: 'my-custom-class',
},
})
```
### languageClassPrefix
Adds a prefix to language classes that are applied to code tags.
Default: `'language-'`
```js
CodeBlockLowlight.configure({
languageClassPrefix: 'language-',
})
```
2021-04-02 06:07:40 +08:00
## Commands
2021-10-02 06:14:44 +08:00
### setCodeBlock()
Wrap content in a code block.
```js
editor.commands.setCodeBlock()
```
### toggleCodeBlock()
Toggle the code block.
```js
editor.commands.toggleCodeBlock()
```
2021-04-02 06:07:40 +08:00
## Keyboard shortcuts
2021-10-02 04:57:27 +08:00
| Command | Windows/Linux | macOS |
| --------------- | ----------------------------- | ------------------------- |
| toggleCodeBlock | `Control` `Alt` `C` | `Cmd` `Alt` `C` |
2021-04-02 06:07:40 +08:00
## Source code
2021-04-21 21:31:11 +08:00
[packages/extension-code-block-lowlight/ ](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-code-block-lowlight/ )
2021-04-02 06:07:40 +08:00
## Usage
2021-10-19 00:01:47 +08:00
https://embed.tiptap.dev/preview/Nodes/CodeBlockLowlight