| 123456789101112131415161718192021222324252627282930313233 | /*Language: Backus–Naur FormAuthor: Oleg Efimov <[email protected]>*/function(hljs){  return {    contains: [      // Attribute      {        className: 'attribute',        begin: /</, end: />/      },      // Specific      {        begin: /::=/,        starts: {          end: /$/,          contains: [            {              begin: /</, end: />/            },            // Common            hljs.C_LINE_COMMENT_MODE,            hljs.C_BLOCK_COMMENT_MODE,            hljs.APOS_STRING_MODE,            hljs.QUOTE_STRING_MODE          ]        }      }    ]  };}
 |