- Added rst snippets.

This commit is contained in:
Shougo Matsushita 2013-03-30 10:53:16 +09:00
parent 0ea0a0b3a7
commit be9fcf4215
2 changed files with 124 additions and 0 deletions

View File

@ -0,0 +1,121 @@
snippet quickstart
options head
===========================
${1:#:content_name}
===========================
.. contents :: contents_name
title1
====================================
subtitle1
-----------------------------------
subtitle2
-----------------------------------
subtitle3
-----------------------------------
title2
====================================
subtitle1
-----------------------------------
subtitle2
-----------------------------------
subtitle3
-----------------------------------
title3
====================================
subtitle1
-----------------------------------
subtitle2
-----------------------------------
subtitle3
-----------------------------------
snippet contnents
options head
.. contents :: ${1:#:contents_name}
snippet title
options head
${1:#:title}
====================================
snippet subtitle
options head
${1:#:subtitle}
-----------------------------------
snippet code_block
abbr code
options head
.. code-block :: ${1:#:filetype}
${2:#:content}
snippet link_raw
abbr link_as_raw
options head
\`${1:#:link}\`_
snippet link_label
abbr link_and_label
options head
\`${1:#:title} <${2:#:link}>\`_
snippet table_grid
abbr grid_table
options head
+------------------+------------+-----------------------+------------+
|${1:#:cel} | | | |
+==================+============+=======================+============+
| | | | |
+------------------+------------+-----------------------+------------+
| | | | |
+------------------+------------+-----------------------+------------+
snippet table_simple
abbr simple_table
options head
:${1:#:text}:
: :
: :
: :
snippet list
options head
-
-
-
-
snippet nested_list
options head
- ${1:#:text}
-
-
-
snippet caption
options head
[#]
snippet image
options head
.. image :: ${1:#:path}
snippet strong
options head
**${1:#:text}**

View File

@ -750,6 +750,9 @@ A:
==============================================================================
CHANGELOG *neosnippet-changelog*
2013-03-30
- Added rst snippets.
2013-03-24
- Improved documentation.
- Added ruby snippets.