@@ -46,17 +46,28 @@ object Utility extends AnyRef with parsing.TokenTests {
46
46
*/
47
47
def trim (x : Node ): Node = x match {
48
48
case Elem (pre, lab, md, scp, child@_* ) =>
49
- val children = child flatMap trimProper
49
+ val children = combineAdjacentTextNodes( child:_* ) flatMap trimProper
50
50
Elem (pre, lab, md, scp, children.isEmpty, children : _* )
51
51
}
52
52
53
+ private def combineAdjacentTextNodes (children : Node * ): Seq [Node ] = {
54
+ children.foldLeft(Seq .empty[Node ]) { (acc, n) =>
55
+ (acc.lastOption, n) match {
56
+ case (Some (Text (l)), Text (r)) => {
57
+ acc.dropRight(1 ) :+ Text (l + r)
58
+ }
59
+ case _ => acc :+ n
60
+ }
61
+ }
62
+ }
63
+
53
64
/**
54
65
* trim a child of an element. `Attribute` values and `Atom` nodes that
55
66
* are not `Text` nodes are unaffected.
56
67
*/
57
68
def trimProper (x : Node ): Seq [Node ] = x match {
58
69
case Elem (pre, lab, md, scp, child@_* ) =>
59
- val children = child flatMap trimProper
70
+ val children = combineAdjacentTextNodes( child:_* ) flatMap trimProper
60
71
Elem (pre, lab, md, scp, children.isEmpty, children : _* )
61
72
case Text (s) =>
62
73
new TextBuffer ().append(s).toText
0 commit comments