We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce760c1 commit 63d706eCopy full SHA for 63d706e
app/build.gradle.kts
@@ -14,8 +14,8 @@ android {
14
minSdk = 21
15
targetSdk = 36
16
17
- versionCode = 42
18
- versionName = "1.0-42"
+ versionCode = 43
+ versionName = "1.0-43"
19
20
}
21
app/src/main/java/jisho/web-scraper.kt
@@ -8,13 +8,13 @@ import org.jsoup.Jsoup
8
import org.jsoup.nodes.Element
9
10
data class JishoScraps(
11
- val furigana: String,
+ val furigana: List<String>? = null,
12
val text: String
13
)
fun conceptLightRepresentation(concept: Element): JishoScraps {
return JishoScraps(
- concept.select(".furigana .kanji").joinToString("") { it.text() },
+ concept.select(".furigana .kanji").map { it.text() },
concept.select(".text").text()
0 commit comments