Skip to content

Commit f4c7a96

Browse files
committed
Update Info
1 parent 867301a commit f4c7a96

File tree

2 files changed

+41
-18
lines changed

2 files changed

+41
-18
lines changed

README.md

Lines changed: 40 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,56 @@
11
## htmlEntities for lua
22
**Module for lua, decoding htmlEntities.**
33

4+
Module for decoding of text using entities html,
5+
6+
or encode of text to entities html.
7+
8+
49
##Requires
5-
Written for Lua 5.2 but will probably run on 5.3 or 5.1. </br>
10+
Written for Lua 5.2 but will probably run on 5.3 or 5.1.
11+
612

713
##Setup
8-
Use the terminal `wget https://github.com/TiagoDanin/htmlEntities-for-lua/releases/download/0.3/htmlEntities-for-lua.0.3.zip && unzip htmlEntities-for-lua.0.3.zip && make install` </br> </br>
9-
Makefile: </br>
10-
Install for all (lua5.x) `$ make all` </br>
11-
Remove for all (lua5.x) `$ make unistallall` </br>
12-
To install only for a single `$ make install5.x` </br>
13-
The same goes for remove `$ make unistall5.x` </br>
14-
*Only available from the releases 0.3*
14+
Use the terminal `wget https://github.com/TiagoDanin/htmlEntities-for-lua/releases/download/0.3/htmlEntities-for-lua.0.3.zip && unzip htmlEntities-for-lua.0.3.zip && make install`
15+
16+
17+
Makefile:
18+
19+
Install for all (lua5.x) `$ make all`
20+
21+
Remove for all (lua5.x) `$ make unistallall`
22+
23+
To install only for a single `$ make install5.x`
24+
25+
The same goes for remove `$ make unistall5.x`
26+
27+
*Only available from the releases 0.3.1*
28+
1529

1630
## Releases
17-
[htmlEntities-for-lua BETA](https://github.com/TiagoDanin/htmlEntities-for-lua/tree/master) </br>
18-
[htmlEntities-for-lua V0.3](https://github.com/TiagoDanin/htmlEntities-for-lua/releases/tag/0.3) </br>
19-
[htmlEntities-for-lua V0.2](https://github.com/TiagoDanin/htmlEntities-for-lua/releases/tag/0.2) </br>
20-
[htmlEntities-for-lua V0.1](https://github.com/TiagoDanin/htmlEntities-for-lua/releases/tag/0.1) </br>
31+
[htmlEntities-for-lua BETA](https://github.com/TiagoDanin/htmlEntities-for-lua/tree/master)
32+
33+
[htmlEntities-for-lua V0.3.1](https://github.com/TiagoDanin/htmlEntities-for-lua/releases/tag/0.3.1)
34+
35+
[htmlEntities-for-lua V0.2](https://github.com/TiagoDanin/htmlEntities-for-lua/releases/tag/0.2)
36+
37+
[htmlEntities-for-lua V0.1](https://github.com/TiagoDanin/htmlEntities-for-lua/releases/tag/0.1)
38+
2139

2240
## Pages
23-
Module [file](https://github.com/TiagoDanin/htmlEntities-for-lua/blob/master/src/htmlEntities.lua) </br>
24-
Makefile [file](https://github.com/TiagoDanin/htmlEntities-for-lua/blob/master/Makefile) </br>
25-
Example [file](https://github.com/TiagoDanin/htmlEntities-for-lua/blob/master/example/example.lua) </br>
26-
Suggestions and Support [New Issue](https://github.com/TiagoDanin/htmlEntities-for-lua/issues/new) </br>
41+
Module [file](https://github.com/TiagoDanin/htmlEntities-for-lua/blob/master/src/htmlEntities.lua)
42+
43+
Makefile [file](https://github.com/TiagoDanin/htmlEntities-for-lua/blob/master/Makefile)
44+
45+
Example [file](https://github.com/TiagoDanin/htmlEntities-for-lua/blob/master/example/example.lua)
46+
47+
Suggestions and Support [New Issue](https://github.com/TiagoDanin/htmlEntities-for-lua/issues/new)
48+
2749
For stable versions to access [Releases](https://github.com/TiagoDanin/htmlEntities-for-lua/releases)
2850

51+
2952
##LICENSE
30-
The MIT License [(MIT)](https://github.com/TiagoDanin/htmlEntities-for-lua/blob/master/LICENSE) </br>
53+
The MIT License [(MIT)](https://github.com/TiagoDanin/htmlEntities-for-lua/blob/master/LICENSE)
3154

3255
---
3356
>Copyright (c) 2016 Tiago Danin

src/htmlEntities.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Copyright (c) 2016 Tiago Danin
3030
]==]--
3131

3232
local htmlEntities = {
33-
version = '0.3',
33+
version = '0.3.1',
3434
name = 'htmlEntities-for-lua',
3535
author = 'Tiago Danin - 2016',
3636
license = 'The MIT License (MIT)',

0 commit comments

Comments
 (0)