---
metadata:
  - name: generator
    content: Diplodoc Platform v5.54.5
  - property: og:type
    content: article
  - property: article:section
    content: Работать с задачами
  - property: og:title
    content: Таблицы
  - property: article:tag
    content: Базовая инструкция
alternate:
  - https://yandex.com.tr/support/tracker/en/wysiwyg/tables-format.md
  - href: en/wysiwyg/tables-format.md
    type: text/markdown
    title: Markdown version
  - href: ../llms.txt
    type: text/markdown
    title: llms.txt
title: Tables in Yandex Tracker
description: This article will show you how to work with tables in Tracker.
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.com.tr/support/tracker/en/llms.txt


[//]: # (Исходники yfmeditor/ хранятся в документации Yandex Wiki)

# Tables

<!-- source: en/yfmeditor/tables-format.md -->
The editor supports two types of static tables:

* A multi-row table in YFM format — cells can contain multi-line content: lists, code snippets, and other tables.

  A multi-row table is created by default using the ![](../yfmeditor/icons/table.svg)</svg> button on the toolbar.

* A simple table in Markdown format — cells can only contain inline formatting elements: text formatting, images, and links. Simple tables also support left-aligned, right-aligned, and centered cell text.

{% note info "" %}

You can only add a simple table in Markdown markup mode.

To change a simple table to [multi-row](#multiline) format, select a table cell in the visual editor, click the ![](../_assets/svg/vertical-ellipsis.svg) icon, and choose **Convert to YFM table**.

{% endnote %}
<!-- endsource: en/yfmeditor/tables-format.md -->

{% list tabs group=editor %}

- Visual editor

   To add a table:

   1. On the toolbar, click ![](../yfmeditor/icons/table.svg)</svg> **Table** → **Static table**.

      <!-- source: en/yfmeditor/tools-tip.md -->
      You can also use the quick access menu: type `/` and select a command from the list. {#slash}
      <!-- endsource: en/yfmeditor/tools-tip.md -->

   1. To add rows or columns, place the cursor in the table and click ![](../_assets/svg/add-icon.svg)</svg> next to the right or bottom edge of the table.

   1. Fill in the cells. You can format text in the table cells.

   To edit a table, select a cell and use the ![](../_assets/svg/actions.svg)</svg> buttons above the column or at the beginning of the row. You can:

   * Add rows or columns before or after the selected cell.

   * Delete the selected row or column.

   * Delete a table.

- Markdown markup

   {% include notitle [yfm](../yfmeditor/tables-format.md#yfm) %}

{% endlist %}

{% included (../yfmeditor/tables-format.md) %}
<!--
Учитывать при внесении изменений: текст из файла также собирается в документации Yandex Tracker.
-->

## Visual editor {#editor}

To add a table:

1. On the toolbar, click ![](../yfmeditor/icons/table.svg)</svg> **Table**.

    <!-- source: en/yfmeditor/tools-tip.md -->
    You can also use the quick access menu: type `/` and select a command from the list. {#slash}
    <!-- endsource: en/yfmeditor/tools-tip.md -->

1. To add rows or columns, hover over the table edge and click ![](../_assets/svg/create-task.svg)</svg> where you want to add new elements.

1. Fill in the cells. You can format text in the table cells.

To edit a table, hover over it and click ![](../_assets/svg/move.svg)</svg> above the column or at the beginning of the row. Then choose an action from the menu:
* Add a row or column.
* Clear row or column cells.
* Delete a row or column.
* Delete a table.
* Drag a row or column to a new position using the ![](../_assets/svg/move.svg)</svg> icon.

* Select the background color of a row or column: click ![](../_assets/svg/move.svg)</svg> and choose **Row color** or **Column color** from the menu.

![](../_assets/static-table-actions.png =450x){.border-yes}

## Intro {#intro}

The editor supports two types of static tables:

* A multi-row table in YFM format — cells can contain multi-line content: lists, code snippets, and other tables.

  A multi-row table is created by default using the ![](../yfmeditor/icons/table.svg)</svg> button on the toolbar.

* A simple table in Markdown format — cells can only contain inline formatting elements: text formatting, images, and links. Simple tables also support left-aligned, right-aligned, and centered cell text.

{% note info "" %}

You can only add a simple table in Markdown markup mode.

To change a simple table to [multi-row](#multiline) format, select a table cell in the visual editor, click the ![](../_assets/svg/vertical-ellipsis.svg) icon, and choose **Convert to YFM table**.

{% endnote %}

## Markdown markup {#yfm}

### Multi-row table {#multiline}

To add a multi-row table, use the following markup:

```
#|
|| **Header 1** | **Header 2** ||
||Two lines
of text
|
- Item 1
- Item 2
- Item 3
||
|#
```
{% note tip "" %}

To highlight the header row in the table, you can apply [formatting](https://yandex.com.tr/support/tracker/en/user/syntax-yfm.md) to the text in the first row. For example, you can make it bold.

{% endnote %}

{% cut "Result" %}

#|
|| **Header 1** | **Header 2** ||
||Two lines
of text
|
- Item 1
- Item 2
- Item 3
||
|#

{% endcut %}

### Simple table {#simple}

To insert a basic table into your text, use the following markup:

```
| Header 1 | Header 2 | Header 3 |
| --- | --- | --- |
| cell 11 | cell 12 | cell 13 |
| cell 21 | cell 22 | cell 23 |
```

{% cut "Result" %}

| Header 1 | Header 2 | Header 3 |
| --- | --- | --- |
| cell 11 | cell 12 | cell 13 |
| cell 21 | cell 22 | cell 23 |

{% endcut %}

### Aligning text {#align}

In [basic tables](#simple), you can left-align, right-align, and center the contents of a column. To do this, use colons (`:`) in the table's separator row.

```
| Left-aligned | Centered     | Right-aligned |
| :---           | :----:        | ---:            |
| Text          | Text         | Text           |
| Text          | Text         | Text           |
```

{% cut "Result" %}

| Left-aligned | Centered | Right-aligned |
| :---           | :----:        | ---:            |
| Text | Text | Text |
| Text | Text | Text |

{% endcut %}


<!-- source: en/_assets/style/image.md -->

<!-- endsource: en/_assets/style/image.md -->

{% endincluded %}
{% included (../yfmeditor/tables-format.md:./tools-tip.md) %}
You can also use the quick access menu: type `/` and select a command from the list. {#slash}

You can also add formatting elements [using your keyboard](https://yandex.com.tr/support/tracker/en/user/markup.md#keyboard) or through the quick access menu: type `/` and select an item from the list. {#keyboard}


{% endincluded %}
{% included (../yfmeditor/tables-format.md:../_assets/style/image.md) %}


{% endincluded %}