tacker

a simple web bundler
git clone https://tongong.net/git/tacker.git
Log | Files | Refs | README

commit 2391e6bb8efc1365174e6e15a097812e960f0b94
parent 92e1987d19f929275acf42abb243679442261af9
Author: tongong <tongong@gmx.net>
Date:   Sun, 18 Dec 2022 13:15:27 +0100

bugfix

Diffstat:
Mbundle_html.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bundle_html.ha b/bundle_html.ha @@ -12,7 +12,7 @@ fn tacker_html(inputpath: str, ofile: io::handle) void = { const ifile = os::open(inputpath)!; defer io::close(ifile)!; const p_main = searchio::compile(["<!--", "<script", "<link", - "<audio", "<embed", "img", "source", "<track", "<video"]); + "<audio", "<embed", "<img", "<source", "<track", "<video"]); const p_comment = searchio::compile(["-->"]); const p_tagclose = searchio::compile([">"]); const p_scriptclose = searchio::compile(["</script>"]);