| 12345678910111213141516171819202122232425262728 | module.exports = 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          ]        }      }    ]  };};
 |