blob: 2e263ecacf54930a80a783f732a552589d9618bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
unXHTMLify
==========
Removes slashes from self-closing HTML elements.
<br />
becomes
<br>
Currently the implementation is very simplistic and liberal. Any `/>` will get replaced to remove the slash.
Takes input from STDIN and outputs to STDOUT.
## License
Licensed under the MIT license. See the included LICENSE file.
|