---
title: "wrapInList command"
description: "Use the wrapInList command in Tiptap to wrap a node in the current selection in a list. Learn more in our docs!"
canonical_url: "https://tiptap.dev/docs/editor/api/commands/lists/wrap-in-list"
---

# wrapInList command

Use the wrapInList command in Tiptap to wrap a node in the current selection in a list. Learn more in our docs!

`wrapInList` will wrap a node in the current selection in a list.

## Parameters

`typeOrName: string | NodeType`

The type of node that should be wrapped in a list.

`attributes?: Record<string, any>`

The attributes that should be applied to the list. **This is optional.**

## Use the wrapInList command

```js
// wrap a paragraph in a bullet list
editor.commands.wrapInList('paragraph')
```
