aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/vim-snippets/snippets/xml.snippets
blob: 0ab346ba21a22ae3c594f1b6e5ee6acc20cc8226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# xml declaration
snippet xml
	<?xml version="1.0" encoding="UTF-8"?>
# tag
snippet t
	<${1:}>
		${2}
	</$1>
# inline tag
snippet ti
	<${1:}>${2}</$1>