vim-snippets/snippets/rst.snippets

70 lines
1.0 KiB
Plaintext
Raw Normal View History

# rst
snippet :
:${1:field name}: ${2:field body}
snippet *
2013-05-30 23:06:43 -04:00
*${1:Emphasis}* ${2}
snippet **
2013-05-30 23:06:43 -04:00
**${1:Strong emphasis}** ${2}
snippet _
\`${1:hyperlink-name}\`_
.. _\`$1\`: ${2:link-block}
snippet =
${1:Title}
=====${2:=}
${3}
snippet -
${1:Title}
-----${2:-}
${3}
2013-05-30 23:06:43 -04:00
#some directive
snippet img:
.. |${2:alias}| image:: ${1:img}
2013-05-30 23:18:29 -04:00
snippet fig:
.. figure:: ${1:img}
:alt: ${2:alter text}
$2
snippet cont:
.. contents::
2013-05-30 23:06:43 -04:00
${1:content}
snippet code:
.. code:: ${1:type}
2013-05-30 23:12:17 -04:00
2013-05-30 23:06:43 -04:00
${2:write some code}
snippet tip:
.. tip::
${1:my tips}
snippet not:
.. note::
${1:my notes}
snippet war:
.. warning::
${1:attention!}
snippet imp:
.. important::
${1:this is importatnt}
snippet att:
.. attention::
${1:hey!}
snippet dan:
.. danger::
${1:ah!}
snippet err:
.. error::
${1:Error occur}
snippet cau:
.. caution::
${1:Watch out!}
2013-05-30 23:12:17 -04:00
#Spinx only
2013-05-30 23:06:43 -04:00
snippet sid:
.. sidebar:: ${1:Title}
2013-05-30 23:12:17 -04:00
${2}
2013-05-30 21:45:28 -04:00
# CJK optimize, CJK has no space between charaters
snippet *c
2013-05-30 23:06:43 -04:00
\ *${1:Emphasis}*\ ${2}
2013-05-30 21:45:28 -04:00
snippet **c
2013-05-30 23:06:43 -04:00
\ **${1:Strong emphasis}**\ ${2}
2013-05-30 21:45:28 -04:00