2
0
mirror of https://git.zx2c4.com/cgit synced 2025-08-31 06:15:08 +00:00
Files
cgit/filters/html-converters/txt2html

5 lines
114 B
Bash
Executable File

#!/bin/sh
echo "<pre>"
sed "s|&|\\&amp;|g;s|'|\\&apos;|g;s|\"|\\&quot;|g;s|<|\\&lt;|g;s|>|\\&gt;|g"
echo "</pre>"