Skip to content

Commit a0ae770

Browse files
committed
Vesion 1.1.1
1 parent 9652d4f commit a0ae770

File tree

3 files changed

+28
-25
lines changed

3 files changed

+28
-25
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ For stable versions to access [Releases](https://github.com/TiagoDanin/htmlEntit
5454
GNU GENERAL PUBLIC LICENSE V3 [(GPL)](https://github.com/TiagoDanin/htmlEntities-for-lua/blob/master/LICENSE)
5555

5656
---
57-
>Copyright (c) 2016 Tiago Danin
57+
> By Tiago Danin
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package = "html-entities"
2+
version = "1.1.1-0"
3+
4+
source = {
5+
url = "https://github.com/TiagoDanin/htmlEntities-for-lua/archive/1.1.1.tar.gz",
6+
dir = "htmlEntities-for-lua-1.1.1"
7+
8+
}
9+
10+
description = {
11+
summary = "Module for lua, decoding html entities :)",
12+
detailed = "Module for decoding of text using entities html or encode of text to entities html :V",
13+
homepage = "https://TiagoDanin.github.io/htmlEntities-for-lua/",
14+
maintainer = "Tiago Danin <TiagoDanin@outlook.com>",
15+
license = "GPLv3"
16+
}
17+
18+
dependencies = {
19+
"lua >= 5.1"
20+
}
21+
22+
build = {
23+
type = "builtin",
24+
modules = {
25+
["htmlEntities"] = "src/htmlEntities.lua"
26+
}
27+
}

src/htmlEntities.lua

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,6 @@ local utf8_htmlEntities = true
66
local register_global_module_htmlEntities = false
77
local global_module_name_htmlEntities = 'htmlEntities'
88

9-
--[==[
10-
The MIT License (MIT)
11-
Copyright (c) 2017 Tiago Danin
12-
13-
Permission is hereby granted, free of charge, to any person obtaining a copy
14-
of this software and associated documentation files (the "Software"), to deal
15-
in the Software without restriction, including without limitation the rights
16-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17-
copies of the Software, and to permit persons to whom the Software is
18-
furnished to do so, subject to the following conditions:
19-
20-
The above copyright notice and this permission notice shall be included in
21-
all copies or substantial portions of the Software.
22-
23-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29-
THE SOFTWARE.
30-
31-
]==]--
32-
339
local htmlEntities = {
3410
version = '1.1.1',
3511
name = 'htmlEntities-for-lua',

0 commit comments

Comments
 (0)