LiveCode Documentation Format Reference
Introduction
LiveCode uses a custom documentation format for the dictionary and for extension APIs. The format has very few special characters and is intended to maximise readability and modifiability.
Format
Documentation for a LiveCode API or documentation entry consists of a series of elements and their values, in the following form:
elementName : content
There are several standard types of content; which one may be used depends on the elementName.
Element names
Elements are optional unless otherwise specified.
Name (required)
The name of the API entry. The name must be a single word.
Note: For inline docs, the name element is automatically generated
Synonyms
A comma-delimited list of synonyms for this API entry.
Type (required)
The type of this API entry. One of the following: (API-level)
* control structure * operator * statement * expression
Note: For inline docs, the type element is automatically generated
Syntax (required for API-level entries)
A description of how to use or call this facet of the API. May just be the name itself, for keywords etc. An entry may have a number of Syntax elements, if there are variations within the same entry.
The following can be used to specify livecode syntax:
- [optional]
- … (repeated)
- { variant 1 | variant 2 }
For example, the syntax for the first variant of the split
command:
describes the following possible usages:
split tVar by comma
split tVar using return
split tVar with "a"
split tVar by comma and return
split tVar using the rowdel and the columndel
split tVar with tDelim1 and tDelim2
The syntax for answer file with type
:
Note: For inline docs, the Syntax elements are automatically generated
Summary (required)
A summary of the API entry being documented. The summary should be a single line. Anything more in-depth should be included in the description.
Associated
A comma-delimited list of names of other API or docs entries. Each one must be of type object, glossary, library, or widget. It is used to generate the docs for the entries to which it is associated.
In particular, every API entry in a library should have that library name in its Associated list.
Introduced
The LiveCode version in which the API entry was first available.
OS
A comma-delimited list specifying which operating systems the API entry is available for. One or more of the following:
- mac
- windows
- linux
- iOS
- android
- RPi
Platforms
A comma-delimited list specifying which platforms the API entry is available for. One or more of the following:
- desktop
- server
- web
- mobile
Example
Example elements should show how API entries are used in context. Each example with be displayed in the documentation viewer as a multiline code block. Where possible, an example should be entirely self contained, so that it is runnable as a block of code without any additions.
An API entry can have any number of Example elements.
Parameters
The parameters element itself does not do anything, but can be helpful for readability as a precursor to the parameter elements themselves. Parameter elements are specified in the following way: paramName (paramType) : paramDescription
The param type is optional, although may be helpful to include, and is required for further formatting of parameter descriptions to take place. The three types that will instigate further formatting are:
- enum
- set
- array
A parameter of enum type is one that expects one of a specified list of values. Similarly, a parameter of set type is one that expects a comma-delimited list of one or more of a specified list of values. After the param description of the enum or set type, these values should be listed in the following way
etc.
After the description parameter of array type, the format of the array may optionally be specified in the following way:
}
... ... }
Value and return parameters
For simple return parameters, i.e. the direct return value of a function, use the Returns element. When a value is both an input and output value, for example the value of a property, use the Value element. The Returns and Value elements are mutually exclusive.
Some functions and commands in LiveCode change the value of ‘the result’ and the ‘it’ variable. In these cases there are also special return parameter elements It and The result.
All of these elements can have a type specified in brackets before the colon, as for parameter elements. The same comments about formatting apply to return parameters.
Description (required)
A full description of the API entry. The description may have markdown elements which will be rendered in the documentation viewer.
References
A comma-delimited list of other API or docs entries that are referenced. The references element is essential for linking around the documentation viewer.
The references list should be in the form:
entryName (entryType), entryName (entryType), entryName (entryType), …
Tags
A comma-delimited list of tags for this entry. The documentation viewer can filter entries by tag.
Other documentation syntax
The Description element is the only one that allows standard markdown. There is only (essentially) one other syntactic form allowed in API documentation, which is enclosing text in angle brackets <>. There are three purposes of the angle brackets syntax:
- Specifying occurrences of the name of the current API entry.
- Specifying occurrences of the names of parameters.
- Specifying links to other API entries or documentation.
In the first two cases, applying the syntax merely consists in enclosing the relevant occurrences in angle brackets, eg to reference a parameterpParam in the entry named thisEntry,
This is a sentence in which <pParam> ought to be marked as being a parameter in the API entry for <thisEntry>
To specify a link to another API or docs entry, the latter must be included in the References element. If there is only one item in the References element with a matching name, then it suffices to enclose the referencing text in angle brackets.
This will link correctly to the <other> function’s API entry provided the References element contains only one item with the name “other”.
If the referencing text is different from the name of the entry, such as if it is pluralised or possessive, include the referenced entry name as a label inside the angle brackets.
This will also link correctly to <other|other’s> API entry, but display as “other’s” in the documentation viewer.
If the target name is shared by two references, then the link should be disambiguated by including the type in brackets:
We might want to link to the <other(function)> function and the <other(command)> command in the same entry, if the references contain “other (function)” and “other (command)”.
It is possible to do both of the above at the same time:
This sentence contains links to <other(function)|other’s> and <other(command)|other’s> dictionary entries.
Separate docs files
To specify the documentation for a library in one separate file, it must have the following structure:
Library: libraryName
Summary: librarySummary
Description: libraryDescription
Name: entryName
Type: entryType
Syntax: entrySyntax
Summary: entrySummary
…other elements associated with entryName…
Name: anotherEntryName etc.
Inline documentation
Documentation for LiveCode script and LiveCode extensions can be done in-line. In this case, the Name, Type, Syntax and Associated elements are auto-generated.
The code-block enclosed in / / immediately preceding the handler or syntax definition is used for the other elements of the documentation for that entry. In LiveCode extensions, the types of parameters are also pulled from the associated handler.
Separate docs files examples
Dictionary example
Here is the dictionary document for the textEncode function:
Summary: Converts from text to binary data. Introduced: 7.0 OS: mac,windows,linux,ios,android Platforms: desktop,server,web,mobile Example: textEncode("A","UTF16") Example: put textEncode(field "output","UTF-8") into tOutput put tOutput into url ("file:output.txt") Parameters: stringToEncode (string): Any string, or expression that evaluates to a string. encoding (enum): the encoding to be used - "ASCII" - "ISO-8859-1": Linux only - "MacRoman": OS X only - "Native": ISO-8859-1 on Minux, MacRoman on OS X, CP1252 on Windows - "UTF-16" - "UTF-16BE" - "UTF-16LE" - "UTF-32" - "UTF-32BE" - "UTF-32LE" - "UTF-8" - "CP1252" Returns: Returns the <stringToEncode> as binary data. Description: Converts from text to binary data. The <textEncode> function takes text, and returns it as binary data, encoded with the specified encoding. It is highly recommended that any time you interface with things outside LiveCode (files, network sockets, processes, etc) that you explicitly textEncode any text you send outside LiveCode and <textDecode> all text received into LiveCode. If this doesn't happen, a platform-dependent encoding will be used (which normally does not support Unicode text). It is not, in general, possible to reliably auto-detect text encodings so please check the documentation for the programme you are communicating with to find out what it expects. If in doubt, try UTF-8. References: textDecode (function)
Library example
Name: SortListDescendingText Type: statement Syntax: sort <Target> in descending [text] order Summary: Sorts <Target> in descending text order. Parameters: Target (inout list): An expression that evaluates to a list of strings. Example: put the empty list into tTestList push 1 onto tTestList push "xyz" onto tTestList push 2 onto tTestList Description: Text sort is performed by comparing string elements on a codepoint by codepoint basis. Non-string elements come after all string elements in the sort order. The sort is stable, so that non-string elements are not re-ordered relative to each other. Tags: Sorting Name: SortListAscendingText Type: statement
Inline examples
In general, writing inline docs has fewer requirements since several of the elements are auto-generated.
LiveCode Builder syntax example
/* Summary: Returns the first element of <Target>. Target: An expression which evaluates to a list. output: The first element of <Target> Example: put the empty list into tVar push "first element" onto tVar if the head of tVar is "first element" then end if Description: Returns the first element of the list <Target> without modifying <Target>. ``` the head of tVar``` is equivalent to using the <IndexedElementOfList> operator with index -1, ``` tVar[1]``` References: IndexedElementOfList(operator) Tags: Lists */ syntax HeadOfList is prefix operator with precedence 1 begin end syntax end module
LiveCode Builder handler example
 pResult: The result of the test xResults: The ongoing list of test results Description: Pushes either the string "SUCCESS : <pModule>_<pTest>" or the string "FAILURE : <pModule>_<pTest>" onto the results list, depending on the value of <pResult> */ public handler testLog(in pModule as String, in pTest as String, in pResult as Boolean, inout xResults as List) if pResult then else end if push tStringResult && ":" && pModule & "_" & pTest onto xResults end handler
LiveCode script handler example
Description: <revDocsGenerateDocsFileFromModularFile> is used when packaging a widget to create its API documentation. It generates the Library and Type elements from the declaration in the <pFile> (either widget or library), and extracts the comment block that precedes any initial declaration for use as the library-level Description element. It then extracts the comment blocks that precede syntax and handler definitions in <pFile>, and generates the Name, Type, Syntax, and Associated elements for each entry, as well as the parameter types. Tags: Package building */ function revDocsGenerateDocsFileFromModularFile pFile ... end revDocsGenerateDocsFileFromModularFile