mirror of
https://github.com/FlightControl-Master/MOOSE_DOCS.git
synced 2026-08-10 07:35:49 +00:00
Clean
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
Language: Mojolicious
|
||||
Requires: xml.js, perl.js
|
||||
Author: Dotan Dimet <dotan@corky.net>
|
||||
Description: Mojolicious .ep (Embedded Perl) templates
|
||||
Category: template
|
||||
*/
|
||||
function(hljs) {
|
||||
return {
|
||||
subLanguage: 'xml',
|
||||
contains: [
|
||||
{
|
||||
className: 'meta',
|
||||
begin: '^__(END|DATA)__$'
|
||||
},
|
||||
// mojolicious line
|
||||
{
|
||||
begin: "^\\s*%{1,2}={0,2}", end: '$',
|
||||
subLanguage: 'perl'
|
||||
},
|
||||
// mojolicious block
|
||||
{
|
||||
begin: "<%{1,2}={0,2}",
|
||||
end: "={0,1}%>",
|
||||
subLanguage: 'perl',
|
||||
excludeBegin: true,
|
||||
excludeEnd: true
|
||||
}
|
||||
]
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user