]> luflow.net public git repositories - flow-web.git/blob - static/highlight/es/languages/vbscript-html.js
Initial commit.
[flow-web.git] / static / highlight / es / languages / vbscript-html.js
1 /*! `vbscript-html` grammar compiled for Highlight.js 11.11.1 */
2 var hljsGrammar = (function () {
3 'use strict';
4
5 /*
6 Language: VBScript in HTML
7 Requires: xml.js, vbscript.js
8 Author: Ivan Sagalaev <maniac@softwaremaniacs.org>
9 Description: "Bridge" language defining fragments of VBScript in HTML within <% .. %>
10 Website: https://en.wikipedia.org/wiki/VBScript
11 Category: scripting
12 */
13
14 function vbscriptHtml(hljs) {
15 return {
16 name: 'VBScript in HTML',
17 subLanguage: 'xml',
18 contains: [
19 {
20 begin: '<%',
21 end: '%>',
22 subLanguage: 'vbscript'
23 }
24 ]
25 };
26 }
27
28 return vbscriptHtml;
29
30 })();
31 ;
32 export default hljsGrammar;