소스 검색

Updated content.

mitm 8 년 전
부모
커밋
724763f1c5
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      src/docs/asciidoc/wiki/atom_editor.adoc
  2. 1 1
      src/docs/asciidoc/wiki/atom_snippets.adoc

+ 2 - 2
src/docs/asciidoc/wiki/atom_editor.adoc

@@ -104,14 +104,14 @@ Snippets are an incredibly powerful way to quickly generate commonly needed code
 
 One advantage of using Atom as an editor for the Wiki comes from the use of link:http://flight-manual.atom.io/using-atom/sections/snippets/[Snippets]. You can see a list of available snippets for your document by using the `Command Palette` (kbd:[ctrl]+kbd:[shift] +kbd:[P] or `menu:Packages[Command Palette>Toggle]`). Enter "`snippets`" into the search box and select btn:[Snippets: Available].
 
-The Atom AsciiDoc packages add great functionality to the editor, but they do not cover everything that's possible when using AsciiDoctor syntax. You can customize the editor even further by adding your own snippets. I will get you started with your first snippet. Simply copy and paste the code below into your "`snippets.cson`" file and save. You can locate the file under menu:File[Snippets]. 
+The Atom AsciiDoc packages add great functionality to the editor, but they do not cover everything that's possible when using AsciiDoctor syntax. You can customize the editor even further by adding your own snippets. I will get you started with your first snippet. Simply copy and paste the code below into your "`snippets.cson`" file and save. You can locate the file under menu:File[Snippets].
 
 [source]
 ----
 '.source.asciidoc':
   'Internal Cross Reference':
     'prefix': '<<'
-    'body': '<<${1:link-macro-attributes}#,${2:custom xreflabel text}>>'
+    'body': '<<${1:path-to-wikipage}#,${2:custom label text}>>'
 ----
 
 Thereafter just type kbd:[<<]  and hit kbd:[Tab] to insert an Internal Cross Reference link. You can then use the kbd:[Tab] key to cycle through each tab stop when your ready.

+ 1 - 1
src/docs/asciidoc/wiki/atom_snippets.adoc

@@ -36,5 +36,5 @@ Edit this file to add snippets to the snippets.cson file for the link:https://at
 '.source.asciidoc':
   'Internal Cross Reference':
     'prefix': '<<'
-    'body': '<<${1:link-macro-attributes}#,${2:custom xreflabel text}>>'
+    'body': '<<${1:path-to-wikipage}#,${2:custom label text}>>'
 ----