Skip to content

Commit 57907ff

Browse files
committed
Releng
1 parent 9ea6f64 commit 57907ff

File tree

3 files changed

+24
-10
lines changed

3 files changed

+24
-10
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22
/src/*.o
33
/src/Makefile
44
/.panda-work
5+
.precomp/
6+
HTML-Escape-*
7+

META6.json

+12-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
{
2-
"name" : "HTML::Escape",
3-
"source-url" : "git://github.com/moznion/p6-HTML-Escape.git",
4-
"perl" : "v6",
2+
"authors" : [
3+
"moznion"
4+
],
55
"build-depends" : [ ],
6+
"depends" : [ ],
7+
"description" : "Utility of HTML escaping",
8+
"license" : "Artistic-2.0",
9+
"name" : "HTML::Escape",
10+
"perl" : "6.c",
611
"provides" : {
712
"HTML::Escape" : "lib/HTML/Escape.pm6"
813
},
9-
"depends" : [ ],
10-
"description" : "Utility of HTML escaping",
14+
"resources" : [ ],
15+
"source-url" : "git://github.com/moznion/p6-HTML-Escape.git",
16+
"tags" : [ ],
1117
"test-depends" : [ ],
12-
"version" : "*",
13-
"authors" : [
14-
"moznion"
15-
]
18+
"version" : "0.0.1"
1619
}

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ HTML::Escape provides a function which escapes HTML's special characters. It per
1919

2020
This module is perl6 port of [HTML::Escape of perl5](https://metacpan.org/pod/HTML::Escape).
2121

22+
Functions
23+
=========
24+
25+
`escape-html(Str $raw-str) returns Str`
26+
---------------------------------------
27+
28+
Escapes HTML's special characters in given string.
29+
2230
TODO
2331
====
2432

@@ -32,7 +40,7 @@ SEE ALSO
3240
COPYRIGHT AND LICENSE
3341
=====================
3442

35-
Copyright 2015 moznion <[email protected]>
43+
Copyright 2017- moznion <[email protected]>
3644

3745
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.
3846

0 commit comments

Comments
 (0)