summaryrefslogtreecommitdiff
path: root/doc/createAvailableOperationsListView.awk
blob: 56350f50d2327a3c4cb9b8a22502cb1a3554d2a2 (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 ":experimental:"
    print ""
}

{
	print "'''"
	print "[[" $1 "]]"
	print "****"
	print "*Operation:* <<" $1 "," $1 ">> +"
	print "*Default key:*", $2, "+"
	print "****"
	print "\n" $3, "+"
	print "\n\n"
}