izhangzhihao / intellij-rainbow-brackets

🌈Rainbow Brackets for IntelliJ based IDEs/Android Studio/HUAWEI DevEco Studio/Fleet
https://plugins.jetbrains.com/plugin/10080-rainbow-brackets
GNU General Public License v3.0
4.35k stars 202 forks source link

<> colouring in markdown table #2699

Closed dukedagmor closed 5 months ago

dukedagmor commented 5 months ago

Have you checked the issues and discussions to ensure there are no duplicates?

No

Your programming languages

Markdown

Free or paid?

Free users

Expected Behavior

|heading|heading|
|-|-|
|<span>||

Should colour ‘’ at least ‘<‘ & ‘>’ the rest should be dependant on settings

Current Behavior

Does not colour it does colour ‘<‘ & ‘>’ if I change it to < span> but doesn’t seem to recognise it as HTML/XML

Code snippet for reproduce

|heading|heading|
|-|-|
|<span>||

Your Environment

Writerside 2023.2 EAP Build #WRS-232.10275

izhangzhihao commented 5 months ago

I checked the PSI tree structure built by the IDE, and it shows that the HTML element was not built as a PSI tree, but inlined as one psi element, so there is no way to highlight < or > right now.

image