From e591efae98b7979aebd0229d918e33e78e254ed8 Mon Sep 17 00:00:00 2001 From: Samy Pesse Date: Tue, 18 Oct 2016 21:34:19 +0200 Subject: [PATCH] Fix normalize to join text nodes --- src/plugins/schema.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/schema.js b/src/plugins/schema.js index 698f9cb2d..e867f6c13 100644 --- a/src/plugins/schema.js +++ b/src/plugins/schema.js @@ -113,7 +113,7 @@ const NO_ADJACENT_TEXT_RULE = { return pairs.reduce((t, pair) => { const [ first, second ] = pair return t.joinNodeByKey(first.key, second.key) - }) + }, transform) } }