From 44723ef00835df69030fede537e0a7dd334ed42d Mon Sep 17 00:00:00 2001 From: Ilia Permiashkin Date: Tue, 25 Aug 2026 10:45:46 +0000 Subject: [PATCH] [markdown] IJPL-253366 The PlantUML Markdown Extension is too old Merge-request: IJ-MR-219422 Merged-by: Ilia Permiashkin Merge-request: IJ-MR-219513 Merged-by: Ilia Permiashkin GitOrigin-RevId: da3ee2005ecdcefafe952eba06f073b4621e860a --- plugins/markdown/core/resources/META-INF/plugin.xml | 2 +- .../common/plantuml/PlantUMLCodeGeneratingProvider.kt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/markdown/core/resources/META-INF/plugin.xml b/plugins/markdown/core/resources/META-INF/plugin.xml index c97af1427e6d..d40d3ff14086 100644 --- a/plugins/markdown/core/resources/META-INF/plugin.xml +++ b/plugins/markdown/core/resources/META-INF/plugin.xml @@ -377,7 +377,7 @@ defaultValue="600000" description="Interval in milliseconds defining how often Markdown plugin caches (e.g. PlantUML diagrams) should be cleared"/> - get() = dowloadableFiles + get() = downloadableFiles override fun isApplicable(language: String): Boolean { return isEnabled && isAvailable && PlantUMLCodeFenceLanguageProvider.isPlantUmlInfoString(language.lowercase()) @@ -91,6 +91,6 @@ class PlantUMLCodeGeneratingProvider: CodeFenceGeneratingProvider, MarkdownExten companion object { const val jarFilename = "plantuml.jar" private val ownFiles = listOf(jarFilename) - private val dowloadableFiles = listOf(FileEntry(jarFilename) { Registry.stringValue("markdown.plantuml.download.link") }) + private val downloadableFiles = listOf(FileEntry(jarFilename) { Registry.stringValue("markdown.plantuml.download.link") }) } }