All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dankito.utils.html.JsoupNodeExtensions.kt Maven / Gradle / Ivy

There is a newer version: 1.0.20
Show newest version
package net.dankito.utils.html

import org.jsoup.nodes.Node
import org.jsoup.select.NodeTraversor


fun Node.toPlainText(): String {
    val formatter = FormattingVisitor()
    NodeTraversor.traverse(formatter, this) // walk the DOM, and call .head() and .tail() for each node

    return formatter.toString()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy