diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2013-05-27 19:39:43 +0000 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2013-05-27 19:54:16 +0000 |
commit | 8149be213f1c8f52b0dbe6c213f6073af57fa954 (patch) | |
tree | e4d0315f53022bb7335f782ad394d8e7602f1b52 /filters/html-converters/man2html | |
parent | dcbc0438b2543a733858d62170f3110a89edbed6 (diff) | |
download | cgit-8149be213f1c8f52b0dbe6c213f6073af57fa954.tar cgit-8149be213f1c8f52b0dbe6c213f6073af57fa954.tar.gz cgit-8149be213f1c8f52b0dbe6c213f6073af57fa954.zip |
filters: import more modern scripts
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'filters/html-converters/man2html')
-rwxr-xr-x | filters/html-converters/man2html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/filters/html-converters/man2html b/filters/html-converters/man2html new file mode 100755 index 0000000..1b28437 --- /dev/null +++ b/filters/html-converters/man2html @@ -0,0 +1,5 @@ +#!/bin/sh +echo "<div style=\"font-family: monospace\">" +groff -mandoc -T html -P -r -P -l | egrep -v '(<html>|<head>|<meta|<title>|</title>|</head>|<body>|</body>|</html>|<!DOCTYPE|"http://www.w3.org)' +echo "</div>" + |