> This is a **highly experimental** feature still under active development. It is documented here primarily for the real early adopters as this feature develops.
Space Lua is a custom implementation of the [Lua programming language](https://lua.org/), embedded in SilverBullet. It aims to be a largely complete Lua implementation, and adds a few non-standard features while remaining syntactically compatible with “real” Lua.
This is a big effort. During its development, Space Lua will be offered as a kind of “alternative universe” to the things mentioned above. Existing [[Live Templates]], [[Live Queries]] and [[Space Script]] will continue to work as before, unaltered.
Once these features stabilize and best practices are ironed out, old mechanisms will likely be deprecated and possibly removed at some point.
We’re not there yet, though.
# Basics
In its essence, Space Lua adds two features to its [[Markdown]] language:
* **Definitions**: Code written in `space-lua` code blocks are enabled across your entire space.
* **Expressions**: The `${expression}` syntax will [[Live Preview]] to its evaluated value.
## Definitions
Space Lua definitions are defined in fenced code blocks, in this case with the `space-lua` language. As follows:
Each `space-lua` block has its own local scope. However, following Lua semantics, when functions and variables are not explicitly defined as `local` they will be available globally across your space. This means that the `adder` function above can be used in any other page.
Since there is a single global namespace, it is good practice to manually namespace things using the following pattern:
```space-lua
-- This initializes the stuff variable with an empty table if it's not already defined
A new syntax introduced with Space Lua is the `${lua expression}` syntax that you can use in your pages. This syntax will [[Live Preview]] to the evaluation of that expression.
For example: 10 + 2 = ${adder(10, 2)} (Alt-click, or select to see the expression) is using the just defined `adder` function to this rather impressive calculation. Yes, this may as well be written as `${10 + 2}` (${10 + 2}), but... you know.
## Queries
Space Lua has a feature called [[Space Lua/Lua Integrated Query]], which integrate SQL-like queries into Lua. By using this feature, you can easily replicate [[Live Queries]]. More detail in [[Space Lua/Lua Integrated Query]], but here’s a small example querying the last 3 modifies pages:
The `${lua expression}` syntax can be used to implement simple widgets. If the Lua expression evaluates to a simple string, it will live preview as that string rendered as markdown. However, if the expression returns a Lua table with specific keys, you can do some cooler stuff.
Lua APIs, which should be (roughly) implemented according to the Lua standard.
*`print`
*`assert`
*`ipairs`
*`pairs`
*`unpack`
*`type`
*`tostring`
*`tonumber`
*`error`
*`pcall`
*`xpcall`
*`setmetatable`
*`getmetatable`
*`rawset`
*`string`:
*`byte`
*`char`
*`find`
*`format`
*`gmatch`
*`gsub`
*`len`
*`lower`
*`upper`
*`match`
*`rep`
*`reverse`
*`sub`
*`split`
*`table`
*`concat`
*`insert`
*`remove`
*`sort`
*`os`
*`time`
*`date`
*`js` (Warning: this will be revised): JavaScript interop functions
*`new`: instantiate a JavaScript constructor
*`importModule`: import a JavaScript from a URL (`import` equivalent)
*`tolua`: convert a JS value to a Lua value
*`tojs`: convert a Lua value to a JS value
*`log`: console.log
In addition, [all SilverBullet syscalls](https://jsr.io/@silverbulletmd/silverbullet/doc/syscalls) are exposed. However since the Lua naming convention prefers using `snake_case` it is recommended you call them that way. For instance: `editor.flash_notification` is more Lua’y than `editor.flashNotification` (although both are supported at this time -- again, subject to change).
While in [[Space Script]] all syscalls are asynchronous and need to be called with `await`, this is happens transparently in Space Lua leading to cleaner code:
```space-lua
local function call_some_things()
local text = space.read_page(editor.get_current_page())
Space Lua is intended to be a more or less complete implementation of [Lua 5.4](https://www.lua.org/manual/5.4/). However, a few features are (still) missing:
*`goto` and labels (not planned, goto considered harmful)
* coroutines (not planned, not useful in the SilverBullet context)
* _ENV (planned)
* Full metatable support (only partial now, planned)
# Frequently Asked Questions
## Why Lua?
Lua is purpose-designed to be a simple, [easy to learn](https://www.lua.org/manual/5.4/), yet powerful language for extending existing applications. It is commonly used in the gaming industry, but to extend many other applications. If you know any other programming language, you will be able to learn Lua within hours or less.
## Why a custom Lua runtime?
Rather than using a WebAssembly or other implementation of Lua that could run in the browser and server, we have opted for a custom implementation. This is achievable because Lua is a relatively simple and small language to implement and allows for deep integration in the custom Lua runtime. The thing that triggered a custom implementation was the need to call asynchronous (JavaScipt) APIs from Lua, without having to resort to ugly asynchronous callback-style API design (Lua does not support async-await). In SilverBullet’s Lua implementation, the differences between asynchronous and synchronous APIs is fully abstracted away, which makes for a very clean development experience.