A flashcard app for drilling on spellings of words based on audio recordings
on.save_settings = function()
	settings = {words={}}
	for _,word in ipairs(Words) do
		if word.contents and #word.contents > 0 then
			table.insert(settings.words, word.contents)
		end
	end
	settings.font_height = Font_height
	settings.line_height = Line_height
	return settings
end