22 lines
		
	
	
		
			390 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			390 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
snippet t "XML inline tag" i
 | 
						|
<${1:tag}>${2:content}</${1/([\w:._-]+).*/$1/}>
 | 
						|
endsnippet
 | 
						|
 | 
						|
snippet a "XML attribute" i
 | 
						|
${1:attrib}="${2:value}"$0
 | 
						|
endsnippet
 | 
						|
 | 
						|
snippet < "XML inline tag" i
 | 
						|
<${1:tag}>${2:content}</${1/([\w:._-]+).*/$1/}>
 | 
						|
endsnippet
 | 
						|
 | 
						|
snippet tb "XML inline tag" i
 | 
						|
<${1:tag}>
 | 
						|
	${2:content}
 | 
						|
</${1/([\w:._-]+).*/$1/}>
 | 
						|
endsnippet
 | 
						|
 | 
						|
snippet <! "XML comment" i
 | 
						|
<!-- $1 -->$0
 | 
						|
endsnippet
 |