/** * Name: lyr * Description: Lyrics text files. * Author: Elena "of Valhalla" */ state lyr { BEGIN { header (); } END { trailer (); } /* Titles. */ /==/ { keyword_face (true); language_print ($0); call (eat_one_line); keyword_face (false); } /* Authors. */ /=/ { comment_face (true); language_print ($0); call (eat_one_line); comment_face (false); } /* Comments. */ /\[/ { comment_face (true); language_print ($0); call (eat_one_line); comment_face (false); } LANGUAGE_SPECIALS { language_print ($0); } }