mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-12-22 03:48:18 +08:00
搭建框架
This commit is contained in:
23
static/highlight/languages/erb.js
Normal file
23
static/highlight/languages/erb.js
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
Language: ERB (Embedded Ruby)
|
||||
Requires: xml.js, ruby.js
|
||||
Author: Lucas Mazza <lucastmazza@gmail.com>
|
||||
Contributors: Kassio Borges <kassioborgesm@gmail.com>
|
||||
Description: "Bridge" language defining fragments of Ruby in HTML within <% .. %>
|
||||
Category: template
|
||||
*/
|
||||
|
||||
function(hljs) {
|
||||
return {
|
||||
subLanguage: 'xml',
|
||||
contains: [
|
||||
hljs.COMMENT('<%#', '%>'),
|
||||
{
|
||||
begin: '<%[%=-]?', end: '[%-]?%>',
|
||||
subLanguage: 'ruby',
|
||||
excludeBegin: true,
|
||||
excludeEnd: true
|
||||
}
|
||||
]
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user