ru.curs.adocwrapper.inline.text.SmallText.kt Maven / Gradle / Ivy
The newest version!
package ru.curs.adocwrapper.inline.text
import ru.curs.adocwrapper.inline.InlineContentType
import ru.curs.adocwrapper.inline.UnsafeInline
class SmallText(string: String) : UnsafeInline(string) {
init {
this.text = "[small]#$text#"
this.type = InlineContentType.SmallText
}
}