diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-06-03 05:37:35 -0600 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-06-03 05:37:35 -0600 |
commit | f18b36c3bff0082f08524718481f21e36a244ac1 (patch) | |
tree | dbc0401bee90ced313d3df1a72b8a53374b178c7 /lua.html.markdown | |
parent | 3ea2b0b29ff004bfd4151dede0c1b55e52ea922d (diff) |
[lua/*] remove HTML tags
Diffstat (limited to 'lua.html.markdown')
-rw-r--r-- | lua.html.markdown | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/lua.html.markdown b/lua.html.markdown index 460295ff..a755e6e1 100644 --- a/lua.html.markdown +++ b/lua.html.markdown @@ -390,31 +390,29 @@ g() -- Prints out 343; nothing printed before now. ## Community -If you need support join the official Lua [mailing list](https://www.lua.org/lua-l.html), [irc channel](http://lua-users.org/wiki/IrcChannel), or [forum](https://luaforum.com). - +If you need support join the official Lua [mailing list](https://www.lua.org/lua-l.html), [IRC channel](http://lua-users.org/wiki/IrcChannel), or [forum](https://luaforum.com). ## References I was excited to learn Lua so I could make games -with the <a href="http://love2d.org/">Love 2D game engine</a>. That's the why. +with the [LÖVE game engine](http://love2d.org/). That's the why. -I started with <a href="https://ebens.me/posts/lua-for-programmers-part-1/">BlackBulletIV's Lua for programmers</a>. -Next I read the official <a href="http://www.lua.org/pil/contents.html">Programming in Lua</a> book. +I started with [BlackBulletIV's Lua for programmers](https://ebens.me/posts/lua-for-programmers-part-1/). +Next I read the official [Programming in Lua](http://www.lua.org/pil/contents.html) book. That's the how. -It might be helpful to check out the <a href="http://lua-users.org/wiki/LuaShortReference">Lua short -reference</a> on lua-users.org. +It might be helpful to check out the [Lua short reference](http://lua-users.org/wiki/LuaShortReference) on lua-users.org. The main topics not covered are standard libraries: -* <a href="http://lua-users.org/wiki/StringLibraryTutorial">string library</a> -* <a href="http://lua-users.org/wiki/TableLibraryTutorial">table library</a> -* <a href="http://lua-users.org/wiki/MathLibraryTutorial">math library</a> -* <a href="http://lua-users.org/wiki/IoLibraryTutorial">io library</a> -* <a href="http://lua-users.org/wiki/OsLibraryTutorial">os library</a> +* [`string` library](http://lua-users.org/wiki/StringLibraryTutorial) +* [`table` library](http://lua-users.org/wiki/TableLibraryTutorial) +* [`math` library](http://lua-users.org/wiki/MathLibraryTutorial) +* [`io` library](http://lua-users.org/wiki/IoLibraryTutorial) +* [`os` library](http://lua-users.org/wiki/OsLibraryTutorial) By the way, the entire file is valid Lua; save it -as learn.lua and run it with "lua learn.lua" ! +as learn.lua and run it with "`lua learn.lua`" ! This was first written for tylerneylon.com, and is -also available as a <a href="https://gist.github.com/tylerneylon/5853042">GitHub gist</a>. Have fun with Lua! +also available as a [GitHub gist](https://gist.github.com/tylerneylon/5853042). Have fun with Lua! |