1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- = Atom Snippets
- ```
- # Your snippets
- #
- # Atom snippets allow you to enter a simple prefix in the editor and hit tab to
- # expand the prefix into a larger code block with templated values.
- #
- # You can create a new snippet in this file by typing "snip" and then hitting
- # tab.
- #
- # An example CoffeeScript snippet to expand log to console.log:
- #
- # '.source.coffee':
- # 'Console log':
- # 'prefix': 'log'
- # 'body': 'console.log $1'
- #
- # Each scope (e.g. '.source.coffee' above) can only be declared once.
- #
- # This file uses CoffeeScript Object Notation (CSON).
- # If you are unfamiliar with CSON, you can read more about it in the
- # Atom Flight Manual:
- # http://flight-manual.atom.io/using-atom/sections/basic-customization/#_cson
- '.source.asciidoc':
- 'Cross reference internal element, same page':
- 'prefix': 'xrefI'
- 'body': '<<${1:reference-a-section-in-the-same-page},${2:custom label text}>>'
- 'Cross reference internal element, same module':
- 'prefix': 'xrefIsm'
- 'body': '<<${1:target-page-filename}.adoc#${2:reference-section},${3:custom label text}>>'
- 'Cross reference internal element, named module':
- 'prefix': 'xrefInm'
- 'body': 'xref:${1:module-name}:${2:target-page-filename}.adoc#${3:reference-section}[${4:label text}]'
- 'Cross reference page, same module':
- 'prefix': 'xrefPsm'
- 'body': 'xref:${1:target-page-filename}.adoc[${2:link text}]'
- 'Cross reference page, named module':
- 'prefix': 'xrefPnm'
- 'body': 'xref:${1:module-name}:${2:target-page-filename}.adoc[${3:link text}]'
- 'Cross reference page, ROOT module':
- 'prefix': 'xrefPrm'
- 'body': 'xref:ROOT:${1:target-page-filename}.adoc[${2:link text}]'
- 'Admonition Block':
- 'prefix': 'admonB'
- 'body': """
- [${1:NOTE}${2:TIP}${3:IMPORTANT}${4:CAUTION}${5:WARNING}]
- ====
- $6
- ====
- $7
- """
- 'Admonition Block with Title':
- 'prefix': 'admonBwT'
- 'body': """
- [${1:NOTE}${2:TIP}${3:IMPORTANT}${4:CAUTION}${5:WARNING}]
- .${6:Optional Title}
- ====
- $7
- ====
- $8
- """
- 'Admonition Paragraph':
- 'prefix': 'admonP'
- 'body': """
- ${1:NOTE}${2:TIP}${3:IMPORTANT}${4:CAUTION}${5:WARNING}: $6
- """
- 'Admonition Paragraph with Title':
- 'prefix': 'admonPwT'
- 'body': """
- .${1:Optional Title}
- ${2:NOTE}${3:TIP}${4:IMPORTANT}${5:CAUTION}${6:WARNING}: $7
- """
- 'Include partial same module':
- 'prefix': 'part'
- 'body': 'include::partial$${1:partial-filename}.adoc[${3:line=}${4:tag=}${5:tags=}]'
- 'Include partial different module':
- 'prefix': 'partM'
- 'body': 'include::${1:module}:partial$${2:partial-filename}.adoc[${3:line=}${4:tag=}${5:tags=}]'
- 'Include partial ROOT':
- 'prefix': 'partR'
- 'body': 'include::ROOT:partial$${1:partial-filename}.adoc[${2:line=}${3:tag=}${4:tags=}]'
- 'Module inline image':
- 'prefix': 'imgM'
- 'body': 'image:${1:module}:${2:target-resource-filename.ext}[${3:}]'
- 'Module block image':
- 'prefix': 'imageM'
- 'body': 'image::${1:module}:${2:target-resource-filename.ext}[${3:}]'
- 'ROOT inline image':
- 'prefix': 'imgMR'
- 'body': 'image:ROOT:${1:target-resource-filename.ext}[${2:}]'
- 'ROOT block image':
- 'prefix': 'imageMR'
- 'body': 'image::ROOT:${1:target-resource-filename.ext}[${2:}]'
- ```
|