1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-25 16:20:49 +02:00

chore: rename imageElmnts to imageElements in 04-transforms.md (#5431)

It will make code more readable and character difference is very less so it's worth changing.
This commit is contained in:
Ravi Lamkoti
2023-05-25 23:25:24 +05:30
committed by GitHub
parent b7fd322f01
commit 869d1240d3

View File

@@ -22,12 +22,12 @@ Non-standard operations (or debugging/tracing which Nodes will be affected by a
For example, to replace all image elements with their alt text:
```javascript
const imageElmnts = Editor.nodes(editor, {
const imageElements = Editor.nodes(editor, {
at: [], // Path of Editor
match: (node, path) => 'image' === node.type,
// mode defaults to "all", so this also searches the Editor's children
})
for (const nodeEntry of imageElmnts) {
for (const nodeEntry of imageElements) {
const altText =
nodeEntry[0].alt ||
nodeEntry[0].title ||