Template:Lua
From Legacy Roblox Wiki
Jump to navigationJump to search
{{{}}}
This is a documentation subpage for Template:Lua.
It contains usage information, categories and other content that is not part of the original template page.
This template allows you to have syntax highlighting with a tab width of 4 to present Lua code.
Usage
{{lua|[=]code[|linenumbers=true]}} Note: text between brackets ([ and ]) is optional, text in bold represents a certain value (something you must replace) and the rest represents things that must be present as-is.
Parameters
- [empty or 1]
- The code itself.
- linenumbers
- Whether line numbers should be shown.
Examples
Example
Code
{{Lua|= for i = 1, 5 do print("Hello World!") end }}
Result
for i = 1, 5 do
print("Hello World!")
end