2021-03-10 11:35:00 -05:00
hljs . registerLanguage ( "inform7" , ( ( ) => { "use strict" ; return e => ( { name : "Inform 7" ,
aliases : [ "i7" ] , case _insensitive : ! 0 , keywords : {
keyword : "thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule"
} , contains : [ { className : "string" , begin : '"' , end : '"' , relevance : 0 , contains : [ {
className : "subst" , begin : "\\[" , end : "\\]" } ] } , { className : "section" ,
begin : /^(Volume|Book|Part|Chapter|Section|Table)\b/ , end : "$" } , {
begin : /^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\b/ ,
end : ":" , contains : [ { begin : "\\(This" , end : "\\)" } ] } , { className : "comment" ,
begin : "\\[" , end : "\\]" , contains : [ "self" ] } ] } ) } ) ( ) ) ;