---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.6
alternate:
  - https://yandex.ru/support/wiki/en/static-markup/grids.md
  - https://yandex.ru/support/wiki/ru/static-markup/grids.md
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.ru/support/wiki/en/llms.txt



# Tables in the old editor

{% note info "" %}

For information on how to work with tables in the new editor, see [Dynamic table](https://yandex.ru/support/wiki/en/wysiwyg/grid.md).

{% endnote %}


Simple tables are static tables that are created manually using markup elements.

Wiki also supports table markup using standard [HTML tags](https://yandex.ru/support/wiki/en/static-markup/html-code.md).

{% list tabs %}

- Tables in Wiki format

   * To create a table, use the markup:

      ```
      #|
      || Heading 1 | Heading 2| Heading 3 ||
      || cell 11 | cell 12 | cell 13 ||
      || cell 21 | cell 22 | cell 23 ||
      |#
      ```

   * To format a table at full page width without borders, use the markup:

      ```
      #||
      || cell 11 | cell 12 | cell 13||
      || cell 21 | cell 22 | cell 23||
      ||#
      ```

   {% note info %}

   You can use [text styling elements](https://yandex.ru/support/wiki/en/static-markup/formatting.md) in table cells.

   {% endnote %}

- Tables in Markdown format

   Add an empty line before the table.
   To create a table, use the markup:

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

   {% note info %}

   You can use [text styling elements](https://yandex.ru/support/wiki/en/static-markup/formatting.md) in table cells.

   {% endnote %}

   - Tables in CSV format

   To display [CSV data](https://yandex.ru/support/wiki/en/static-markup/csv.md) as a table, use the markup:

   ```
   %%(csv delimiter=; head=1)
   Heading 1;Heading 2;Heading 3
   cell 11;cell 12;cell 13
   cell 21;cell 22;cell 23
   %%
   ```
   Markup parameters:

   - `delimiter`: Field separator used in CSV tables.

   - `head`: If set to 1, the first row of the table becomes a heading.

   {% note info %}

   You cannot use text formatting elements in CSV tables.

   {% endnote %}

{% endlist %}

