// act is a custom filetype I have designed to be used with acting scripts.// @ts-nocheckimport{TextFile}from"file/classes";import*asohmfrom"ohm-js";constgrammar=ohm.grammar(`Act { Exp = (Title | Alias | Line | Subtext | Comment)+ Title = "#" astring "/n" Alias = astring "=" astring "/n" Line = astring ": " Message "/n" Subtext = "(" Message ")" "/n" Comment = "-" astring "/n" Message = (astring | Italic)+Italic = "/" astring "/"// a string with any number of uppercase, lowercase lettersastring = letter alnum*}`);// a CSS file is a text fileclassActFileextendsTextFile{staticfiletypes=["act"];}exportdefaultActFile;