@nativescript-community/text 1.6.4 → 1.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nativescript-community/text",
|
3
|
-
"version": "1.6.
|
3
|
+
"version": "1.6.5",
|
4
4
|
"description": "Expands the capabilities of NativeScript's text property.",
|
5
5
|
"main": "./index",
|
6
6
|
"sideEffects": false,
|
@@ -30,5 +30,5 @@
|
|
30
30
|
},
|
31
31
|
"license": "Apache-2.0",
|
32
32
|
"readmeFilename": "README.md",
|
33
|
-
"gitHead": "
|
33
|
+
"gitHead": "61291c9563f8f7a6806c3e659d75daf34c88ee29"
|
34
34
|
}
|
@@ -644,12 +644,12 @@ class HtmlToSpannedConverter extends DefaultHandler {
|
|
644
644
|
|
645
645
|
@Override
|
646
646
|
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
|
647
|
-
handleStartTag(
|
647
|
+
handleStartTag(qName, attributes);
|
648
648
|
}
|
649
649
|
|
650
650
|
@Override
|
651
651
|
public void endElement(String uri, String localName, String qName) throws SAXException {
|
652
|
-
handleEndTag(
|
652
|
+
handleEndTag(qName);
|
653
653
|
}
|
654
654
|
|
655
655
|
@Override
|