UNPKG

318 BJavaScriptView Raw
1/*
2Language: Plain text
3Author: Egor Rogov (e.rogov@postgrespro.ru)
4Description: Plain text without any highlighting.
5Category: common
6*/
7
8function plaintext(hljs) {
9 return {
10 name: 'Plain text',
11 aliases: [
12 'text',
13 'txt'
14 ],
15 disableAutodetect: true
16 };
17}
18
19export { plaintext as default };