Template:Nasal doc: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(Various tweaks: Parenthesis after function name, automatic plural form, slightly different doc style, more verbose doc, Template:Inote instead of template:Icaution, using two parameters for the two examples)
m (grammar)
Line 38: Line 38:


=== Basic data ===
=== Basic data ===
; name: Name of function (for example '''maketimer''').
; name:         Name of the function (for example '''maketimer''').


; syntax:        Syntax of function.
; syntax:        Syntax of the function.
:                {{inote|Please use <nowiki><syntaxhighlight lang="nasal"/></nowiki> tags.}}
:                {{inote|Please use <nowiki><syntaxhighlight lang="nasal"/></nowiki> tags.}}


Line 49: Line 49:
; param(n)text:  Description of the parameters.  There can be up to ten parameters, from '''param1text''' to '''param10text'''.
; param(n)text:  Description of the parameters.  There can be up to ten parameters, from '''param1text''' to '''param10text'''.


; example(n):    Examples of the use of the function.  There can be up to ten examples, from '''example1''' to '''example10'''.
; example(n):    Examples of the usage of the function.  There can be up to ten examples, from '''example1''' to '''example10'''.
:                {{inote|Please use <nowiki><syntaxhighlight lang="nasal"/></nowiki> tags.}}
:                {{inote|Please use <nowiki><syntaxhighlight lang="nasal"/></nowiki> tags.}}



Revision as of 21:15, 20 November 2014


The following template description is not displayed when the template is inserted in an article.

Goal

This template is to be used to document Nasal API functions. The underlying aim is to unify Nasal documentation on the wiki.

Usage

{{Nasal doc
| name        = 
| syntax      = <syntaxhighlight lang="nasal"></syntaxhighlight>
| text        = 
| param1      = 
...
| param10     = 
| param1text  = 
...
| param10text = 
| example1    = <syntaxhighlight lang="nasal"></syntaxhighlight>
...
| example10   = <syntaxhighlight lang="nasal"></syntaxhighlight>
}}

All parameters are optional.

Basic data

name
Name of the function (for example maketimer).
syntax
Syntax of the function.
Note Please use <syntaxhighlight lang="nasal"/> tags.
text
Description of the function.
param(n)
Names of the parameters of the function. There can be up to ten parameters, from param1 to param10.
param(n)text
Description of the parameters. There can be up to ten parameters, from param1text to param10text.
example(n)
Examples of the usage of the function. There can be up to ten examples, from example1 to example10.
Note Please use <syntaxhighlight lang="nasal"/> tags.

Example

{{Nasal doc
| name       = function
| syntax     =
<syntaxhighlight lang="nasal">function(a, [b, c]);</syntaxhighlight>
| text       = Returns a value or '''nil'''.
| param1     = a
| param1text = Mandatory argument.
| param2     = b
| param2text = Optional argument.
| param3     = c
| param3text = Optional argument.
| example1   =
<syntaxhighlight lang="nasal">var variable = function("string");</syntaxhighlight>
| example2   =
<syntaxhighlight lang="nasal">var variable = function("string", 1.234, FlightGear);</syntaxhighlight>
}}

function()

function(a, [b, c]);

Returns a value or nil.

a
Mandatory argument.
b
Optional argument.
c
Optional argument.

Examples

var variable = function("string");
var variable = function("string", 1.234, FlightGear);

Known issues

You have to manually input <syntaxhighlight lang="nasal"/>.