From: Sergey Matveev Date: Fri, 9 May 2025 17:51:30 +0000 (+0300) Subject: Ability to insert raw HTML X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=165a7180e52df6a903898b4bfe4630b3d5de1f98;p=zk.git Ability to insert raw HTML --- diff --git a/zk b/zk index 4edf56e..c634b03 100755 --- a/zk +++ b/zk @@ -306,6 +306,11 @@ sub genHTML { } elsif ($cols[0] eq "do-backs") { $doBacksForced = 1; next; + } elsif ($cols[0] eq "raw") { + $_ = join " ", @cols[1..$#cols]; + } elsif ($cols[0] eq "#") { + # this is commented string + next; } else { die "unknown $cols[0] command: $page\n"; }