🛠️ Remove autolink-java
* Removed autolink-java commonmark extension (caused reproducibility issues)
This commit is contained in:
parent
fefeecd650
commit
014783c4b2
2 changed files with 0 additions and 3 deletions
|
|
@ -171,5 +171,4 @@ dependencies {
|
||||||
|
|
||||||
// Markdown
|
// Markdown
|
||||||
implementation("org.commonmark:commonmark:0.23.0")
|
implementation("org.commonmark:commonmark:0.23.0")
|
||||||
implementation("org.commonmark:commonmark-ext-autolink:0.23.0")
|
|
||||||
}
|
}
|
||||||
|
|
@ -8,7 +8,6 @@ import dagger.Module
|
||||||
import dagger.Provides
|
import dagger.Provides
|
||||||
import dagger.hilt.InstallIn
|
import dagger.hilt.InstallIn
|
||||||
import dagger.hilt.components.SingletonComponent
|
import dagger.hilt.components.SingletonComponent
|
||||||
import org.commonmark.ext.autolink.AutolinkExtension
|
|
||||||
import org.commonmark.node.BlockQuote
|
import org.commonmark.node.BlockQuote
|
||||||
import org.commonmark.node.FencedCodeBlock
|
import org.commonmark.node.FencedCodeBlock
|
||||||
import org.commonmark.node.Heading
|
import org.commonmark.node.Heading
|
||||||
|
|
@ -46,7 +45,6 @@ object AppModule {
|
||||||
fun provideCommonmarkParser(): Parser {
|
fun provideCommonmarkParser(): Parser {
|
||||||
return Parser
|
return Parser
|
||||||
.builder()
|
.builder()
|
||||||
.extensions(listOf(AutolinkExtension.create()))
|
|
||||||
.enabledBlockTypes(
|
.enabledBlockTypes(
|
||||||
setOf(
|
setOf(
|
||||||
Heading::class.java,
|
Heading::class.java,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue