Skip to content
FrameworkJavaScript

Underline: underlined text in Blok

Wraps selected text in `<u>`. Activated with Cmd/Ctrl+U or by clicking the U button in the inline toolbar.

Import

TypeScript
import { Underline } from '@bloklabs/core/tools';

Save Data

TypeScript
// Stored as HTML inside the block's text field.
// "Hello <u>world</u>"
JSON
{
  "type": "paragraph",
  "data": { "text": "Hello <u>world</u>" }
}

Usage Example

TypeScript
import { Blok } from '@bloklabs/core';
import { Underline } from '@bloklabs/core/tools';

const editor = new Blok({
  holder: 'editor',
  tools: {
    underline: Underline,
  },
});