[JEWEL-989] Fix Markdown styling XML dependencies

The `ideLafBridgeStyling` module's xml manifest is depending on the
strikethrough and image extensions for no reason (there is no
corresponding dependency set up in the project structure), and the
`intUiStandaloneStyling.xml` module is missing the (provided)
dependency on the tables extension.

This fixes both issues.

closes https://github.com/JetBrains/intellij-community/pull/3197

(cherry picked from commit 3e835932fc1dba4cc37d50421d92ef5bc1fc6dca)


(cherry picked from commit e6277ae20a3c23d1c07c40270ce211dcb3139374)

IJ-MR-173818

GitOrigin-RevId: 2e45c46ee9fce2c3c1d42ef35e9860dd53c3a53d
This commit is contained in:
Sebastiano Poggi
2025-08-25 11:07:25 +02:00
committed by intellij-monorepo-bot
parent 5fda9535ef
commit 0e77b731e4
2 changed files with 9 additions and 11 deletions

View File

@@ -1,13 +1,10 @@
<idea-plugin>
<dependencies>
<module name="intellij.platform.jewel.foundation" />
<module name="intellij.platform.jewel.ui" />
<module name="intellij.platform.jewel.ideLafBridge" />
<module name="intellij.platform.jewel.markdown.core" />
<module name="intellij.platform.jewel.markdown.extensions.autolink" />
<module name="intellij.platform.jewel.markdown.extensions.gfmAlerts" />
<module name="intellij.platform.jewel.markdown.extensions.gfmTables" />
<module name="intellij.platform.jewel.markdown.extensions.gfmStrikethrough" />
<module name="intellij.platform.jewel.markdown.extensions.images" />
</dependencies>
<dependencies>
<module name="intellij.platform.jewel.foundation"/>
<module name="intellij.platform.jewel.ui"/>
<module name="intellij.platform.jewel.ideLafBridge"/>
<module name="intellij.platform.jewel.markdown.core"/>
<module name="intellij.platform.jewel.markdown.extensions.gfmAlerts"/>
<module name="intellij.platform.jewel.markdown.extensions.gfmTables"/>
</dependencies>
</idea-plugin>

View File

@@ -5,5 +5,6 @@
<module name="intellij.platform.jewel.foundation"/>
<module name="intellij.platform.jewel.intUi.standalone"/>
<module name="intellij.platform.jewel.markdown.extensions.gfmAlerts"/>
<module name="intellij.platform.jewel.markdown.extensions.gfmTables"/>
</dependencies>
</idea-plugin>