remove table rendering

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2023-07-10 17:51:01 +02:00
parent fa8fd7b229
commit 78c5e5b6d9
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B
2 changed files with 0 additions and 3 deletions

View File

@ -271,7 +271,6 @@ dependencies {
implementation "io.noties.markwon:core:$markwonVersion"
implementation "io.noties.markwon:ext-strikethrough:$markwonVersion"
implementation "io.noties.markwon:ext-tables:$markwonVersion"
implementation "io.noties.markwon:ext-tasklist:$markwonVersion"
implementation 'com.github.nextcloud-deps:ImagePicker:2.1.0.2'

View File

@ -35,7 +35,6 @@ import io.noties.markwon.Markwon
import io.noties.markwon.MarkwonConfiguration
import io.noties.markwon.core.MarkwonTheme
import io.noties.markwon.ext.strikethrough.StrikethroughPlugin
import io.noties.markwon.ext.tables.TablePlugin
import io.noties.markwon.ext.tasklist.TaskListDrawable
import io.noties.markwon.ext.tasklist.TaskListPlugin
@ -133,7 +132,6 @@ class MessageUtils(val context: Context) {
}
}
})
.usePlugin(TablePlugin.create(context))
.usePlugin(TaskListPlugin.create(drawable))
.usePlugin(StrikethroughPlugin.create()).build()
return markwon.toMarkdown(markdown)