@@ -32,6 +32,7 @@ open class Element: Node {
32
32
public init ( _ tag: Tag , _ baseUri: [ UInt8 ] , _ attributes: Attributes ) {
33
33
self . _tag = tag
34
34
super. init ( baseUri, attributes)
35
+ childNodes. reserveCapacity ( 8 )
35
36
}
36
37
/**
37
38
* Create a new Element from a tag and a base URI.
@@ -48,6 +49,7 @@ open class Element: Node {
48
49
public init ( _ tag: Tag , _ baseUri: [ UInt8 ] ) {
49
50
self . _tag = tag
50
51
super. init ( baseUri, Attributes ( ) )
52
+ childNodes. reserveCapacity ( 8 )
51
53
}
52
54
53
55
public override func nodeNameUTF8( ) -> [ UInt8 ] {
@@ -1015,6 +1017,16 @@ open class Element: Node {
1015
1017
}
1016
1018
return text
1017
1019
}
1020
+
1021
+ public func textUTF8( trimAndNormaliseWhitespace: Bool = true ) throws -> [ UInt8 ] {
1022
+ let accum : StringBuilder = StringBuilder ( )
1023
+ try NodeTraversor ( TextNodeVisitor ( accum, trimAndNormaliseWhitespace: trimAndNormaliseWhitespace) ) . traverse ( self )
1024
+ let text = accum. buffer
1025
+ if trimAndNormaliseWhitespace {
1026
+ return text. trim ( )
1027
+ }
1028
+ return text
1029
+ }
1018
1030
1019
1031
/**
1020
1032
* Gets the text owned by this element only; does not get the combined text of all children.
@@ -1032,6 +1044,23 @@ open class Element: Node {
1032
1044
ownText ( sb)
1033
1045
return sb. toString ( ) . trim ( )
1034
1046
}
1047
+
1048
+ /**
1049
+ * Gets the text owned by this element only; does not get the combined text of all children.
1050
+ * <p>
1051
+ * For example, given HTML {@code <p>Hello <b>there</b> now!</p>}, {@code p.ownText()} returns {@code "Hello now!"},
1052
+ * whereas {@code p.text()} returns {@code "Hello there now!"}.
1053
+ * Note that the text within the {@code b} element is not returned, as it is not a direct child of the {@code p} element.
1054
+ *
1055
+ * @return unencoded text, or empty string if none.
1056
+ * @see #text()
1057
+ * @see #textNodes()
1058
+ */
1059
+ public func ownTextUTF8( ) -> [ UInt8 ] {
1060
+ let sb : StringBuilder = StringBuilder ( )
1061
+ ownText ( sb)
1062
+ return sb. buffer. trim ( )
1063
+ }
1035
1064
1036
1065
private func ownText( _ accum: StringBuilder ) {
1037
1066
for child : Node in childNodes {
@@ -1244,7 +1273,7 @@ open class Element: Node {
1244
1273
@return this element
1245
1274
*/
1246
1275
@discardableResult
1247
- public func addClass( _ className: String ) throws -> Element {
1276
+ public func addClass( _ className: String ) throws -> Element {
1248
1277
let classes : OrderedSet < String > = try classNames ( )
1249
1278
classes. append ( className)
1250
1279
try classNames ( classes)
@@ -1257,7 +1286,7 @@ open class Element: Node {
1257
1286
@return this element
1258
1287
*/
1259
1288
@discardableResult
1260
- public func removeClass( _ className: String ) throws -> Element {
1289
+ public func removeClass( _ className: String ) throws -> Element {
1261
1290
let classes : OrderedSet < String > = try classNames ( )
1262
1291
classes. remove ( className)
1263
1292
try classNames ( classes)
@@ -1270,7 +1299,7 @@ open class Element: Node {
1270
1299
@return this element
1271
1300
*/
1272
1301
@discardableResult
1273
- public func toggleClass( _ className: String ) throws -> Element {
1302
+ public func toggleClass( _ className: String ) throws -> Element {
1274
1303
let classes : OrderedSet < String > = try classNames ( )
1275
1304
if ( classes. contains ( className) ) { classes. remove ( className)
1276
1305
} else {
@@ -1354,6 +1383,19 @@ open class Element: Node {
1354
1383
try html2 ( accum)
1355
1384
return getOutputSettings ( ) . prettyPrint ( ) ? accum. toString ( ) . trim ( ) : accum. toString ( )
1356
1385
}
1386
+
1387
+ /**
1388
+ * Retrieves the element's inner HTML. E.g. on a {@code <div>} with one empty {@code <p>}, would return
1389
+ * {@code <p></p>}. (Whereas {@link #outerHtml()} would return {@code <div><p></p></div>}.)
1390
+ *
1391
+ * @return String of HTML.
1392
+ * @see #outerHtml()
1393
+ */
1394
+ public func htmlUTF8( ) throws -> [ UInt8 ] {
1395
+ let accum : StringBuilder = StringBuilder ( )
1396
+ try html2 ( accum)
1397
+ return getOutputSettings ( ) . prettyPrint ( ) ? accum. buffer. trim ( ) : accum. buffer
1398
+ }
1357
1399
1358
1400
private func html2( _ accum: StringBuilder ) throws {
1359
1401
for node in childNodes {
@@ -1364,7 +1406,7 @@ open class Element: Node {
1364
1406
/**
1365
1407
* {@inheritDoc}
1366
1408
*/
1367
- open override func html( _ appendable: StringBuilder ) throws -> StringBuilder {
1409
+ open override func html( _ appendable: StringBuilder ) throws -> StringBuilder {
1368
1410
for node in childNodes {
1369
1411
try node. outerHtml ( appendable)
1370
1412
}
@@ -1378,7 +1420,7 @@ open class Element: Node {
1378
1420
* @see #append(String)
1379
1421
*/
1380
1422
@discardableResult
1381
- public func html( _ html: String ) throws -> Element {
1423
+ public func html( _ html: String ) throws -> Element {
1382
1424
empty ( )
1383
1425
try append ( html)
1384
1426
return self
0 commit comments