From 341ed248bc79024a4e18747d951cb4a951a5f81b Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Sun, 30 Nov 2014 09:57:57 -0500 Subject: [PATCH] Handle the divine name in text Needs to be stylized later, but this is OK for now. --- .../bspeice/minimalbible/service/format/osisparser/OsisParser.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/kotlin/org/bspeice/minimalbible/service/format/osisparser/OsisParser.kt b/app/src/main/kotlin/org/bspeice/minimalbible/service/format/osisparser/OsisParser.kt index 8305961..de78b7e 100644 --- a/app/src/main/kotlin/org/bspeice/minimalbible/service/format/osisparser/OsisParser.kt +++ b/app/src/main/kotlin/org/bspeice/minimalbible/service/format/osisparser/OsisParser.kt @@ -32,6 +32,7 @@ class OsisParser() : DefaultHandler() { qName: String, attributes: Attributes) { when (localName) { OSISUtil.OSIS_ELEMENT_VERSE -> doWrite.push(true) + "divineName" -> doWrite.push(true) else -> doWrite.push(false) } }