/usr/share/vim/addons/snippets/textile.snippets is in vim-snippets 1.0.0-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Jekyll post header
snippet header
---
title: ${1:title}
layout: post
date: ${2:date} ${0:hour:minute:second} -05:00
---
# Image
snippet img
!${1:url}(${2:title}):${0:link}!
# Table
snippet |
|${1}|
# Link
snippet link
"${1:link text}":${0:url}
# Acronym
snippet (
(${1:Expand acronym})
# Footnote
snippet fn
[${1:ref number}] ${0}
fn$1. ${2:footnote}
|