@@ -330,7 +330,8 @@ public Node contextNode(Document wDoc) {
330
330
}
331
331
332
332
/**
333
- * Serialize a W3C document to a String. The output format will be XML or HTML depending on the content of the doc.
333
+ * Serialize a W3C document that was created by {@link #fromJsoup(org.jsoup.nodes.Element)} to a String.
334
+ * The output format will be XML or HTML depending on the content of the doc.
334
335
*
335
336
* @param doc Document
336
337
* @return Document as string
@@ -423,21 +424,42 @@ public void tail(org.jsoup.nodes.Node source, int depth) {
423
424
424
425
private void copyAttributes (org .jsoup .nodes .Node source , Element el ) {
425
426
for (Attribute attribute : source .attributes ()) {
426
- // the W3C DOM has a different allowed set of characters than HTML5 (that Attribute.getValidKey return, partic does not allow ';'). So if we except when using HTML, go to more restricted XML
427
427
try {
428
428
String key = Attribute .getValidKey (attribute .getKey (), syntax );
429
- if (key != null ) // null if couldn't be coerced to validity
429
+ if (key != null ) {
430
430
el .setAttribute (key , attribute .getValue ());
431
+ addUndeclaredAttrNs (key , el );
432
+ }
431
433
} catch (DOMException e ) {
432
434
if (syntax != Syntax .xml ) {
433
435
String key = Attribute .getValidKey (attribute .getKey (), Syntax .xml );
434
- if (key != null )
435
- el .setAttribute (key , attribute .getValue ()); // otherwise, will skip attribute
436
+ if (key != null ) {
437
+ el .setAttribute (key , attribute .getValue ());
438
+ addUndeclaredAttrNs (key , el );
439
+ }
436
440
}
437
441
}
438
442
}
439
443
}
440
444
445
+ /**
446
+ Add a namespace declaration for an attribute with a prefix if it is not already present. Ensures that attributes
447
+ with prefixes have the corresponding namespace declared, E.g. attribute "v-bind:foo" gets another attribute
448
+ "xmlns:v-bind='undefined'. So that the asString() transformation pass is valid.
449
+ */
450
+ private void addUndeclaredAttrNs (String attrKey , Element wEl ) {
451
+ if (!namespaceAware ) return ;
452
+ int pos = attrKey .indexOf (':' );
453
+ if (pos > 0 ) {
454
+ String prefix = attrKey .substring (0 , pos );
455
+ if (!namespacesStack .peek ().containsKey (prefix )) {
456
+ wEl .setAttribute ("xmlns:" + prefix , undefinedNs );
457
+ namespacesStack .peek ().put (prefix , undefinedNs );
458
+ }
459
+ }
460
+ }
461
+ private static final String undefinedNs = "undefined" ;
462
+
441
463
/**
442
464
* Finds any namespaces defined in this element. Returns any tag prefix.
443
465
*/
0 commit comments