/* Language: ERB (Embedded Ruby) Requires: xml.js, ruby.js Author: Lucas Mazza Contributors: Kassio Borges Description: "Bridge" language defining fragments of Ruby in HTML within <% .. %> Category: template */ function(hljs) { return { subLanguage: 'xml', subLanguageMode: 'continuous', contains: [ { className: 'comment', begin: '<%#', end: '%>', }, { begin: '<%[%=-]?', end: '[%-]?%>', subLanguage: 'ruby', excludeBegin: true, excludeEnd: true } ] }; }