---
title: "Clear Format Tool — Strip Inline Styling"
description: "Remove every inline mark from a selection in one action, leaving plain text without touching block structure."
source: https://blokeditor.com/docs/clearFormat/
lastmod: 2026-09-07
---

Framework JavaScript

Inline Tools Clear Format

# Clear format: strip inline styling

Removes inline formatting (bold, italic, underline, strikethrough, inline code, highlight) from the selected text while keeping links intact. Applied by clicking the Tx button in the inline toolbar.

### Import

TypeScript

```
import { ClearFormat } from '@bloklabs/core/tools';
```

### Save Data

TypeScript

```
// Removes formatting tags from the block's text field.
// "<b>Hello</b> world" becomes "Hello world"
```

JSON

```
{
  "type": "paragraph",
  "data": { "text": "Hello world" }
}
```

### Usage Example

TypeScript

```
import { Blok } from '@bloklabs/core';
import { ClearFormat, Paragraph } from '@bloklabs/core/tools';

const editor = new Blok({
  holder: 'editor',
  tools: {
    // Paragraph is the default block and is not bundled with the core —
    // without it the editor starts with an "unsupported block" stub.
    paragraph: Paragraph,
    clearFormat: ClearFormat,
  },
});
```
