mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-11 07:50:07 -04:00
fix(markdown): conceal nbsp entity as space (#6778)
This commit is contained in:
parent
382c80b575
commit
f7edd3f5f6
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,7 @@
|
||||||
; Replace common HTML entities.
|
; Replace common HTML entities.
|
||||||
((entity_reference) @character.special
|
((entity_reference) @character.special
|
||||||
(#eq? @character.special " ")
|
(#eq? @character.special " ")
|
||||||
(#set! conceal ""))
|
(#set! conceal " "))
|
||||||
|
|
||||||
((entity_reference) @character.special
|
((entity_reference) @character.special
|
||||||
(#eq? @character.special "<")
|
(#eq? @character.special "<")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue