if 0 { <> ---- **Summary** [HJG] 2016-02-02: This is another attempt at quick, simple, ad-hoc printing of simple textfiles. <
> I often have some information as a textfile, and if I need that printed out, I want a nice looking page, <
> e.g. with a few headers, some text in bold etc. but I don't want to use a textprocessor for that. The idea is convert that textfile to a html-file, and use the browser to print it. Add some CSS to taste... With ideas and code from the following pages: * http://wiki.tcl.tk/28965%|%Markdown%|% * [A little demon]) * ... } ---- **Code** ======tcl # EasyTextPrint001.tcl - HaJo Gurt - 2016-02-02 # http://wiki.tcl.tk/42409 puts "EasyTextPrint:" set i 0 foreach s { foo bar grill } { incr i; puts "$i $s" } ... ### EOF ### ====== ---- **Comments** ... ---- '''See also:''' * ... <> GUI | Application