Template:Lua: Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>NXTBoy Undo revision 53437 by JulienDethurens (talk) While I think you are correct, tab widths of 3 are very unusual, and look very strange. Indentation doesn't need to match studio. |
ObsidianPLG (talk | contribs) nvm broke it, rolling it back Tag: Manual revert |
||
(15 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
< | <onlyinclude>{{Code|=|{{{1|{{{}}}}}}|lang=lua|linenumbers={{{linenumbers|}}}}}</onlyinclude>{{documentation}} |
Latest revision as of 22:23, 18 April 2023
{{{}}}
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