othree / html5.vim

HTML5 omnicomplete and syntax
http://www.vim.org/scripts/script.php?script_id=3236
934 stars 76 forks source link

b tag bug #95

Closed schumskie closed 6 years ago

schumskie commented 6 years ago

I use VueBootstrap, and there all tags starts with 'b-something', so parser recognize it as 'b' tag, resulting that text inside tag is bold. I wonder if you could fix this :)

Thanks

othree commented 6 years ago

This is default behavior from Vim runtime. I think you can add one line in vimrc to disable it:

let g:html_no_rendering = 1
schumskie commented 6 years ago

Yup that solved problem partially. I guess I’ll have to report bug there