---
title: "Инструмент «Индексы» — надстрочный и подстрочный текст"
description: "Надстрочный и подстрочный текст одной кнопкой или по Cmd/Ctrl+точка и Cmd/Ctrl+запятая, а также разметка sup/sub, которую сохраняет Blok."
source: https://blokeditor.com/ru/docs/supSub/
lastmod: 2026-08-05
---

Фреймворк JavaScript

Строчные инструменты Superscript & Subscript

# Индексы: надстрочный и подстрочный текст

One toolbar button with a two-option popover that toggles superscript (`<sup>`) or subscript (`<sub>`) on the selection. The two modes are mutually exclusive — applying one removes the other. Shortcuts: Cmd/Ctrl+Period for superscript, Cmd/Ctrl+Comma for subscript.

### Импорт

TypeScript

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

### Формат данных

TypeScript

```
// Stored as HTML inside the block's text field:
// "E = mc<sup>2</sup>" or "H<sub>2</sub>O"
```

JSON

```
{
  "type": "paragraph",
  "data": { "text": "E = mc<sup>2</sup>" }
}
```

### Пример использования

TypeScript

```
import { Blok } from '@bloklabs/core';
import { Paragraph, SupSub } 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,
    supSub: SupSub,
  },
});
```
