Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Polish docs
  • Loading branch information
ellatrix committed Oct 12, 2018
commit 1271b259abbc07a252ce3c2934444483e6a268d5
4 changes: 2 additions & 2 deletions docs/block-api/attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Use `html` to extract the inner HTML from markup.
// { "content": "The inner text of the <strong>figcaption</strong> element" }
```

Use the `multiline` property to extract the inner HTML for the use in `RichText` with the `multiline` prop.
Use the `multiline` property to extract the inner HTML of matching tag names for the use in `RichText` with the `multiline` prop.

```js
{
Expand All @@ -65,7 +65,7 @@ Use the `multiline` property to extract the inner HTML for the use in `RichText`
selector: 'blockquote',
}
}
// { "content": "<p>Quoted text</p><p>And more</p>" }
// { "content": "<p>First line</p><p>Second line</p>" }
```

### `query`
Expand Down