Skip to content

Commit 3474f70

Browse files
committed
Links.
1 parent fceabc9 commit 3474f70

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

Changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Changelog
2-
DumbLuaParser
2+
Dumb Lua Parser
33

44
v1.2.0 (2021-05-13)
55
- Added parser.updateReferences().

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# Dumb Lua Parser
2+
23
*Dumb Lua Parser* is a library for tokenizing Lua code or creating ASTs (Abstract Syntax Trees) and converting the data back to Lua.
34

45
The library is a [single Lua file](dumbParser.lua) with no dependencies other than Lua itself.
56
It works with Lua 5.1, 5.2 and 5.3.
67
MIT license.
78

9+
Download the latest stable release [here](https://github.com/ReFreezed/DumbLuaParser/releases/latest).
10+
11+
812
## Basic usage
13+
914
```lua
1015
local parser = require("dumbParser")
1116

@@ -18,5 +23,8 @@ local lua = parser.toLua(ast, true)
1823
print(lua)
1924
```
2025

26+
2127
## Documentation
22-
See the [source file](dumbParser.lua) for full documentation.
28+
29+
See the [source file](dumbParser.lua) for the full documentation.
30+

dumbParser.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
--[[============================================================
22
--=
3-
--= Lua parsing library v1.2 (2021-05-13)
3+
--= Dumb Lua Parser - Lua parsing library
44
--= by Marcus 'ReFreezed' Thunström
55
--=
6+
--= v1.2 (2021-05-13)
7+
--=
68
--= License: MIT (see the bottom of this file)
9+
--= Website: https://github.com/ReFreezed/DumbLuaParser
710
--=
811
--= Supported Lua versions: 5.1, 5.2, 5.3
912
--=

0 commit comments

Comments
 (0)