Automatic documentation update.

From e53ec1e0c3611c3a0f4ac6228aab041a82b9d3bb
This commit is contained in:
Noam Postavsky 2014-06-17 19:51:37 -04:00
parent a65bb6dfdf
commit ea8b7acf0c
7 changed files with 31 additions and 29 deletions

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/> <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="Frequently Asked Questions"/> <meta name="title" content="Frequently Asked Questions"/>
<meta name="generator" content="Org-mode"/> <meta name="generator" content="Org-mode"/>
<meta name="generated" content="2014-05-11T19:37-0400"/> <meta name="generated" content="2014-06-17T19:49-0400"/>
<meta name="author" content=""/> <meta name="author" content=""/>
<meta name="description" content=""/> <meta name="description" content=""/>
<meta name="keywords" content=""/> <meta name="keywords" content=""/>
@ -391,7 +391,7 @@ directive:
</div> </div>
<div id="postamble"> <div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b <hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-06-17T19:49-0400 from e53ec1e0c3611c3a0f4ac6228aab041a82b9d3bb
</p> </p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p> <p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<meta name="title" content="Yet another snippet extension"/> <meta name="title" content="Yet another snippet extension"/>
<meta name="generator" content="Org-mode"/> <meta name="generator" content="Org-mode"/>
<meta name="generated" content="2014-05-11T19:37-0400"/> <meta name="generated" content="2014-06-17T19:49-0400"/>
<meta name="author" content=""/> <meta name="author" content=""/>
<meta name="description" content=""/> <meta name="description" content=""/>
<meta name="keywords" content=""/> <meta name="keywords" content=""/>
@ -194,7 +194,7 @@ for the JavaScript code in this tag.
</div> </div>
<div id="postamble"> <div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b <hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-06-17T19:49-0400 from e53ec1e0c3611c3a0f4ac6228aab041a82b9d3bb
</p> </p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p> <p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/> <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="Writing snippets"/> <meta name="title" content="Writing snippets"/>
<meta name="generator" content="Org-mode"/> <meta name="generator" content="Org-mode"/>
<meta name="generated" content="2014-05-11T19:37-0400"/> <meta name="generated" content="2014-06-17T19:49-0400"/>
<meta name="author" content=""/> <meta name="author" content=""/>
<meta name="description" content=""/> <meta name="description" content=""/>
<meta name="keywords" content=""/> <meta name="keywords" content=""/>
@ -671,12 +671,13 @@ the field and others mirrors.
<p> <p>
If the value of an <code>${n:</code>-construct starts with and contains <code>$(</code>, then If the value of an <code>${n:</code>-construct starts with and contains <code>$(</code>,
it is interpreted as a mirror for field <code>n</code> with a transformation. The then it is interpreted as a mirror for field <code>n</code> with a
mirror's text content is calculated according to this transformation, transformation. The mirror's text content is calculated according to
which is Emacs-lisp code that gets evaluated in an environment where the this transformation, which is Emacs-lisp code that gets evaluated in
variable <code>text</code> (or <a href="snippet-reference.html#yas-text"><code>yas-text</code></a>) is bound to the text content (string) an environment where the variable <a href="snippet-reference.html#yas-text"><code>yas-text</code></a> is bound to the text
contained in the field <code>n</code>.Here's an example for Objective-C: content (string) contained in the field <code>n</code>. Here's an example for
Objective-C:
</p> </p>
@ -686,7 +687,7 @@ contained in the field <code>n</code>.Here's an example for Objective-C:
return $2; return $2;
} }
- (void)set${2:$(capitalize text)}:($1)aValue - (void)set${2:$(capitalize yas-text)}:($1)aValue
{ {
[$2 autorelease]; [$2 autorelease];
$2 = [aValue retain]; $2 = [aValue retain];
@ -696,12 +697,13 @@ $0
<p> <p>
Look at <code>${2:$(capitalize text)}</code>, it is a mirror with transformation Look at <code>${2:$(capitalize yas-text)}</code>, it is a mirror with
instead of a field. The actual field is at the first line: <code>${2:foo}</code>. transformation instead of a field. The actual field is at the first
When you type text in <code>${2:foo}</code>, the transformation will be evaluated line: <code>${2:foo}</code>. When you type text in <code>${2:foo}</code>, the transformation
and the result will be placed there as the transformed text. So in this will be evaluated and the result will be placed there as the
example, if you type "baz" in the field, the transformed text will be transformed text. So in this example, if you type "baz" in the field,
"Baz". This example is also available in the screencast. the transformed text will be "Baz". This example is also available in
the screencast.
</p> </p>
<p> <p>
Another example is for <code>rst-mode</code>. In reStructuredText, the document Another example is for <code>rst-mode</code>. In reStructuredText, the document
@ -735,9 +737,9 @@ is not. Here's an snippet for rst title:
<pre class="example">${1:$(make-string (string-width text) ?\=)} <pre class="example">${1:$(make-string (string-width yas-text) ?\=)}
${1:Title} ${1:Title}
${1:$(make-string (string-width text) ?\=)} ${1:$(make-string (string-width yas-text) ?\=)}
$0 $0
</pre> </pre>
@ -875,7 +877,7 @@ performs the normal Emacs <code>delete-char</code> command.
</div> </div>
<div id="postamble"> <div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b <hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-06-17T19:49-0400 from e53ec1e0c3611c3a0f4ac6228aab041a82b9d3bb
</p> </p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p> <p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/> <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="Expanding snippets"/> <meta name="title" content="Expanding snippets"/>
<meta name="generator" content="Org-mode"/> <meta name="generator" content="Org-mode"/>
<meta name="generated" content="2014-05-11T19:37-0400"/> <meta name="generated" content="2014-06-17T19:49-0400"/>
<meta name="author" content=""/> <meta name="author" content=""/>
<meta name="description" content=""/> <meta name="description" content=""/>
<meta name="keywords" content=""/> <meta name="keywords" content=""/>
@ -633,7 +633,7 @@ See the documentation on variable <a href="snippet-reference.html#yas-prompt-fun
</div> </div>
<div id="postamble"> <div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b <hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-06-17T19:49-0400 from e53ec1e0c3611c3a0f4ac6228aab041a82b9d3bb
</p> </p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p> <p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/> <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="YASnippet menu"/> <meta name="title" content="YASnippet menu"/>
<meta name="generator" content="Org-mode"/> <meta name="generator" content="Org-mode"/>
<meta name="generated" content="2014-05-11T19:37-0400"/> <meta name="generated" content="2014-06-17T19:49-0400"/>
<meta name="author" content=""/> <meta name="author" content=""/>
<meta name="description" content=""/> <meta name="description" content=""/>
<meta name="keywords" content=""/> <meta name="keywords" content=""/>
@ -269,7 +269,7 @@ variables.
</div> </div>
<div id="postamble"> <div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b <hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-06-17T19:49-0400 from e53ec1e0c3611c3a0f4ac6228aab041a82b9d3bb
</p> </p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p> <p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/> <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="Organizing snippets"/> <meta name="title" content="Organizing snippets"/>
<meta name="generator" content="Org-mode"/> <meta name="generator" content="Org-mode"/>
<meta name="generated" content="2014-05-11T19:37-0400"/> <meta name="generated" content="2014-06-17T19:49-0400"/>
<meta name="author" content=""/> <meta name="author" content=""/>
<meta name="description" content=""/> <meta name="description" content=""/>
<meta name="keywords" content=""/> <meta name="keywords" content=""/>
@ -379,7 +379,7 @@ ruby-mode/
</div> </div>
<div id="postamble"> <div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b <hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-06-17T19:49-0400 from e53ec1e0c3611c3a0f4ac6228aab041a82b9d3bb
</p> </p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p> <p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/> <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="Reference"/> <meta name="title" content="Reference"/>
<meta name="generator" content="Org-mode"/> <meta name="generator" content="Org-mode"/>
<meta name="generated" content="2014-05-11T19:37-0400"/> <meta name="generated" content="2014-06-17T19:49-0400"/>
<meta name="author" content=""/> <meta name="author" content=""/>
<meta name="description" content=""/> <meta name="description" content=""/>
<meta name="keywords" content=""/> <meta name="keywords" content=""/>
@ -1648,7 +1648,7 @@ Log level for <code>yas--message</code> 4 means trace most anything, 0 means not
</div> </div>
<div id="postamble"> <div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b <hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-06-17T19:49-0400 from e53ec1e0c3611c3a0f4ac6228aab041a82b9d3bb
</p> </p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p> <p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>