I want to expand ptest into welcome python in file ending with html. Add these lines in html.snippets(located in vim-snippets/UltiSnips):
snippet ptest
!p print("welcome python")
endsnippet
and ptest expands into !p print("welcome python"). I then rewrite the snippet as below:
snippet ptest
`!p print("welcome python")`
endsnippet
but ptest expands into nothing!