I am using vim-markdown and I want to conceal the tags <u>
and </u>
of the following text:
Lorem ipsum dolor sit amet, <u>consectetur</u> adipiscing elit, sed do eiusmod tempor
How to do that?
I tried to add the following in after/syntax/markdown.vim, but with no success:
syntax match UTag "<u>" conceal
syntax match UTag "</u>" conceal
syntax region UText start="<u>" end="</u>" contains=NONE concealends cterm=underline gui=underline