1
0
mirror of https://github.com/amix/vimrc synced 2025-02-28 14:12:51 +08:00
amix-vimrc-mirror/sources_non_forked/vim-snippets/snippets/textile.snippets

31 lines
371 B
Plaintext
Raw Normal View History

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