mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-snippets/snippets/textile.snippets

31 lines
371 B
Plaintext
Raw Normal View History

2012-08-16 23:41:25 -04:00
# Jekyll post header
snippet header
---
title: ${1:title}
layout: post
date: ${2:date} ${0:hour:minute:second} -05:00
2012-08-16 23:41:25 -04:00
---
# Image
snippet img
!${1:url}(${2:title}):${0:link}!
2012-08-16 23:41:25 -04:00
# Table
snippet |
|${1}|
2012-08-16 23:41:25 -04:00
# Link
snippet link
"${1:link text}":${0:url}
2012-08-16 23:41:25 -04:00
# Acronym
snippet (
(${1:Expand acronym})
2012-08-16 23:41:25 -04:00
# Footnote
snippet fn
[${1:ref number}] ${0}
2012-08-16 23:41:25 -04:00
fn$1. ${2:footnote}
2013-07-17 19:06:05 -04:00