mirror of
https://github.com/FlightControl-Master/MOOSE_DOCS.git
synced 2025-08-15 10:37:49 +00:00
Clean
This commit is contained in:
19
Highlight/languages/vbscript-html.js
Normal file
19
Highlight/languages/vbscript-html.js
Normal file
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
Language: VBScript in HTML
|
||||
Requires: xml.js, vbscript.js
|
||||
Author: Ivan Sagalaev <maniac@softwaremaniacs.org>
|
||||
Description: "Bridge" language defining fragments of VBScript in HTML within <% .. %>
|
||||
Category: scripting
|
||||
*/
|
||||
|
||||
function(hljs) {
|
||||
return {
|
||||
subLanguage: 'xml',
|
||||
contains: [
|
||||
{
|
||||
begin: '<%', end: '%>',
|
||||
subLanguage: 'vbscript'
|
||||
}
|
||||
]
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user