Build the nitdoc quick search index

Property definitions

nitc :: static_index $ DocModel :: create_index_file
	# Build the nitdoc quick search index
	fun create_index_file(file: String) do
		var table = new QuickSearchTable(self)
		var tpl = new Template
		tpl.add "var nitdocQuickSearchRawList="
		tpl.add table.to_json
		tpl.add ";"
		tpl.write_to_file(file)
	end
src/doc/static/static_index.nit:33,2--41,4