App-Mxpress-PDF

 view release on metacpan or  search on metacpan

public/javascripts/ace/snippets/liquid.js  view on Meta::CPAN

\n\
# Include html.snippets\n\
# Some useful Unicode entities\n\
# Non-Breaking Space\n\
snippet nbs\n\
	 \n\
# ←\n\
snippet left\n\
	←\n\
# →\n\
snippet right\n\
	→\n\
# ↑\n\
snippet up\n\
	↑\n\
# ↓\n\
snippet down\n\
	↓\n\
# ↩\n\
snippet return\n\
	↩\n\
# ⇤\n\
snippet backtab\n\
	⇤\n\
# ⇥\n\
snippet tab\n\
	⇥\n\
# ⇧\n\
snippet shift\n\
	⇧\n\
# ⌃\n\
snippet ctrl\n\
	⌃\n\
# ⌅\n\
snippet enter\n\
	⌅\n\
# ⌘\n\
snippet cmd\n\
	⌘\n\
# ⌥\n\
snippet option\n\
	⌥\n\
# ⌦\n\
snippet delete\n\
	⌦\n\
# ⌫\n\
snippet backspace\n\
	⌫\n\
# ⎋\n\
snippet esc\n\
	⎋\n\
# Generic Doctype\n\
snippet doctype HTML 4.01 Strict\n\
	<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\"\n\
	\"http://www.w3.org/TR/html4/strict.dtd\">\n\
snippet doctype HTML 4.01 Transitional\n\
	<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n\
	\"http://www.w3.org/TR/html4/loose.dtd\">\n\
snippet doctype HTML 5\n\
	<!DOCTYPE HTML>\n\
snippet doctype XHTML 1.0 Frameset\n\
	<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n\
	\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n\
snippet doctype XHTML 1.0 Strict\n\
	<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n\
	\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n\
snippet doctype XHTML 1.0 Transitional\n\
	<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n\
	\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n\
snippet doctype XHTML 1.1\n\
	<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\"\n\
	\"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">\n\
# HTML Doctype 4.01 Strict\n\
snippet docts\n\
	<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\"\n\
	\"http://www.w3.org/TR/html4/strict.dtd\">\n\
# HTML Doctype 4.01 Transitional\n\
snippet doct\n\
	<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n\
	\"http://www.w3.org/TR/html4/loose.dtd\">\n\
# HTML Doctype 5\n\
snippet doct5\n\
	<!DOCTYPE html>\n\
# XHTML Doctype 1.0 Frameset\n\
snippet docxf\n\
	<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Frameset//EN\"\n\
	\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd\">\n\
# XHTML Doctype 1.0 Strict\n\
snippet docxs\n\
	<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n\
	\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n\
# XHTML Doctype 1.0 Transitional\n\
snippet docxt\n\
	<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n\
	\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n\
# XHTML Doctype 1.1\n\
snippet docx\n\
	<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\"\n\
	\"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">\n\
# html5shiv\n\
snippet html5shiv\n\
	<!--[if lte IE 8]>\n\
		<script src=\"https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js\"></script>\n\
	<![endif]-->\n\
snippet html5printshiv\n\
	<!--[if lte IE 8]>\n\
		<script src=\"https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js\"></script>\n\
	<![endif]-->\n\
# Attributes\n\
snippet attr\n\
	${1:attribute}=\"${2:property}\"\n\
snippet attr+\n\
	${1:attribute}=\"${2:property}\" attr+${3}\n\
snippet .\n\
	class=\"${1}\"${2}\n\
snippet #\n\
	id=\"${1}\"${2}\n\
snippet alt\n\
	alt=\"${1}\"${2}\n\
snippet charset\n\
	charset=\"${1:utf-8}\"${2}\n\
snippet data\n\
	data-${1}=\"${2:$1}\"${3}\n\
snippet for\n\
	for=\"${1}\"${2}\n\
snippet height\n\
	height=\"${1}\"${2}\n\
snippet href\n\
	href=\"${1:#}\"${2}\n\
snippet lang\n\
	lang=\"${1:en}\"${2}\n\
snippet media\n\
	media=\"${1}\"${2}\n\
snippet name\n\
	name=\"${1}\"${2}\n\
snippet rel\n\
	rel=\"${1}\"${2}\n\
snippet scope\n\
	scope=\"${1:row}\"${2}\n\
snippet src\n\
	src=\"${1}\"${2}\n\
snippet title=\n\
	title=\"${1}\"${2}\n\
snippet type\n\
	type=\"${1}\"${2}\n\
snippet value\n\
	value=\"${1}\"${2}\n\
snippet width\n\
	width=\"${1}\"${2}\n\
# Elements\n\
snippet a\n\
	<a href=\"${1:#}\">${2:$1}</a>\n\
snippet a.\n\
	<a class=\"${1}\" href=\"${2:#}\">${3:$1}</a>\n\
snippet a#\n\
	<a id=\"${1}\" href=\"${2:#}\">${3:$1}</a>\n\
snippet a:ext\n\
	<a href=\"http://${1:example.com}\">${2:$1}</a>\n\



( run in 0.747 second using v1.01-cache-2.11-cpan-39bf76dae61 )