---
metadata:
  - name: generator
    content: Diplodoc Platform v5.54.1
alternate:
  - https://diplodoc.com/docs/en/plugins/installed.md
  - https://diplodoc.com/docs/ru/plugins/installed.md
  - href: en/plugins/installed.md
    type: text/markdown
    title: Markdown version
  - href: ../llms.txt
    type: text/markdown
    title: llms.txt
updatedAt: '2026-08-11T13:35:17.000Z'
---
> **Documentation Index:** Fetch the complete configuration index at https://diplodoc.com/docs/en/llms.txt

# Preinstalled plugins

## Connection {#require}

For preinstalled plugins, instead of the npm package name, the `plugins` field specifies the path to the file inside Diplodoc CLI. For example, for checkboxes (task list):

```yaml
extensions:
  - name: mdit-plugins
    plugins:
      - '@diplodoc/transform/lib/plugins/checkbox'
```

### Example of enabling {#example}

**Installing and configuring the `Tasks list` plugin (task lists)**.

The plugin for creating interactive task lists is included in Diplodoc but requires explicit connection.

**Connection:**

Add the following configuration to the `.yfm` file:

```yaml
extensions:
  - name: mdit-plugins
    plugins:
    - '@diplodoc/transform/lib/plugins/checkbox'
```

**Usage:**

After connecting, you can create interactive task lists:

```markdown
- [x] ~~Написать пресс-релиз~~
- [ ] Обновить веб-сайт  
- [ ] Связаться со СМИ
```

**Result:**

- [x] ~~Write a press release~~
- [ ] Update the website  
- [ ] Contact the media
