erb.js 517 B

1234567891011121314151617181920212223
  1. /*
  2. Language: ERB (Embedded Ruby)
  3. Requires: xml.js, ruby.js
  4. Author: Lucas Mazza <[email protected]>
  5. Contributors: Kassio Borges <[email protected]>
  6. Description: "Bridge" language defining fragments of Ruby in HTML within <% .. %>
  7. Category: template
  8. */
  9. function(hljs) {
  10. return {
  11. subLanguage: 'xml',
  12. contains: [
  13. hljs.COMMENT('<%#', '%>'),
  14. {
  15. begin: '<%[%=-]?', end: '[%-]?%>',
  16. subLanguage: 'ruby',
  17. excludeBegin: true,
  18. excludeEnd: true
  19. }
  20. ]
  21. };
  22. }