From 05f18ac5c65755e1dde4d4bd44575011310bc648 Mon Sep 17 00:00:00 2001 From: epochqwert Date: Thu, 28 May 2015 07:16:46 -0500 Subject: added quot to the html entities programs cat fontfile.808 | fontdump > editme.font ; cat editme.font | fontbuild.sh > filefile2.808 the fontstuff is for text-mode fonts for NetBSD. at least. can probably be used for any binary files if you want. only support for 8x8 fonts in build atm. mime-type got a fix for css --- nocompile/bin/encode_html_entities | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'nocompile/bin/encode_html_entities') diff --git a/nocompile/bin/encode_html_entities b/nocompile/bin/encode_html_entities index 4cb1836..e2bcf30 100755 --- a/nocompile/bin/encode_html_entities +++ b/nocompile/bin/encode_html_entities @@ -1,4 +1,5 @@ #!/bin/sh sed "s/&/\&/g" \ | sed "s//\>/g" + | sed "s/>/\>/g" \ + | sed 's/"/\"/g' -- cgit v1.2.3