summaryrefslogtreecommitdiff
path: root/doc/createConfigurationCommandsListView.awk
blob: 0b61499630c327cc4ddf676226f36a775b85ad14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
BEGIN {
	# Switch field separator from space to tabulator.
	FS="\t"
}

{
	print "'''"
	print "[[" $1 "]]"
	print "****"
	print "*Syntax:* <<" $1 "," $1 ">>", $2, "+"
	sub("\"\"", "n/a", $3)
	print "*Default:*", $3, "+"
	print "*Example:*", $5, "+"
	print "****"
	print "\n" $4, "+"
	print "\n\n"
}