com.tfowl.jsoup.ktx.JsonLd.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsoup-ktx Show documentation
Show all versions of jsoup-ktx Show documentation
Kotlin extensions and compatibility with other HTTP libraries for Jsoup.
The newest version!
package com.tfowl.jsoup.ktx
import org.jsoup.nodes.Document
fun Document.getJsonLinkingDataStrings(): List {
return select("script[type='application/ld+json']")
.map { script -> script.html().trim() }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy