HFMT(8)

NAME
	hfmt

SYNOPSIS
	hfmt [-a] format args ...

DESCRIPTION
	Hfmt print args with HTML format.
	Args are given in number 1,2,...
	number 0 is special: a whole line excluding last '\n'
	The data comes from standard input. The example is:
		ls -l | hfmt '%s %s %s %8s %s %3s %6s <a href="%U">%H</a>\n' 1 4 5 6 7 8 9 10 10
	
	With a flag "-a", the data is located directly in the arguments.
	For example:
		hfmt -a "%U" 'abc def'
	will produce
		"abc%20def"

NOTE
	flag '-x' is discarded.