mirror of https://gitee.com/bigwinds/arangodb
Italic asterisks should be done by escaping the asterisk and wrapping it with html i-tag. It seems to be the only safe technique (3 asterisks to display 1 italic asterisk in a list works, unless followed by more markup for italic text; 1 escaped asterisk wrapped by i-tag works regardless of the rest of the line). |
||
---|---|---|
.. | ||
Conventions.mdpp | ||
Functions.mdpp | ||
README.mdpp |
README.mdpp
!CHAPTER Extending AQL with User Functions AQL comes with a built-in set of functions, but it is not a fully-featured programming language. To add missing functionality or to simplify queries, users may add their own functions to AQL. These functions can be written in Javascript, and must be registered via the API; see [Registering Functions](../AqlExtending/Functions.html). In order to avoid conflicts with existing or future built-in function names, all user functions must be put into separate namespaces. Invoking a user functions is then possible by referring to the fully-qualified function name, which includes the namespace, too; see [Conventions](../AqlExtending/Conventions.html).