1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/highlight.js/lib/languages/vbscript-html.js

25 lines
513 B
JavaScript
Raw Normal View History

2024-01-16 21:26:16 +08:00
/*
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 <% .. %>
Website: https://en.wikipedia.org/wiki/VBScript
Category: scripting
*/
function vbscriptHtml(hljs) {
2023-12-18 13:12:25 +08:00
return {
2024-01-16 21:26:16 +08:00
name: 'VBScript in HTML',
2023-12-18 13:12:25 +08:00
subLanguage: 'xml',
contains: [
{
2024-01-16 21:26:16 +08:00
begin: '<%',
end: '%>',
2023-12-18 13:12:25 +08:00
subLanguage: 'vbscript'
}
]
};
2024-01-16 21:26:16 +08:00
}
module.exports = vbscriptHtml;