net.dankito.readability4j.model.ArticleMetadata.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Readability4J Show documentation
Show all versions of Readability4J Show documentation
A Kotlin port of Mozilla‘s Readability. It extracts a website‘s relevant content and removes all clutter from it.
The newest version!
package net.dankito.readability4j.model
open class ArticleMetadata(var title: String? = null, var byline: String? = null, var excerpt: String? = null, var dir: String? = null)