From 8b778875b0d81bd83a02c0aa73958cd022b79708 Mon Sep 17 00:00:00 2001 From: Philippe Mongeau Date: Wed, 22 Jun 2011 17:52:23 -0400 Subject: [PATCH] added table, link, acronym and footnote snippets for textile --- snippets/textile.snippets | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/snippets/textile.snippets b/snippets/textile.snippets index e2a7a30..c78d6ec 100644 --- a/snippets/textile.snippets +++ b/snippets/textile.snippets @@ -1,3 +1,4 @@ +# Jekyll post header snippet header --- title: ${1:title} @@ -5,6 +6,25 @@ snippet header date: ${2:date} ${3:hour:minute:second} -05:00 --- +# Image snippet img - !${1:url}! + !${1:url}(${2:title}):${3:link}! +# Table +snippet | + |${1}|${2} + +# Link +snippet link + "${1:link text}":${2:url} + +# Acronym +snippet ( + (${1:Expand acronym})${2} + +# Footnote +snippet fn + [${1:ref number}] ${3} + + fn$1. ${2:footnote} +