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