@linalgo/annotate-core
Advanced tools
Comparing version 0.0.11 to 0.0.12
{ | ||
"name": "@linalgo/annotate-core", | ||
"version": "0.0.11", | ||
"version": "0.0.12", | ||
"description": "A library for html document annotations following W3C standards.", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
@@ -54,3 +54,3 @@ import { XPathSelection } from './selection'; | ||
for (let child of node.childNodes as any) { | ||
if (!(child.className === "material-icons back-arrow")) { | ||
if (!(child.className && child.className.includes('linpop-ignore'))) { | ||
textNodes = textNodes.concat(getTextNodes(child)); | ||
@@ -57,0 +57,0 @@ } |
Sorry, the diff of this file is too big to display
2401526