]> luflow.net public git repositories - flow-web.git/blob - static/highlight/es/languages/plaintext.js
Initial commit.
[flow-web.git] / static / highlight / es / languages / plaintext.js
1 /*! `plaintext` grammar compiled for Highlight.js 11.11.1 */
2 var hljsGrammar = (function () {
3 'use strict';
4
5 /*
6 Language: Plain text
7 Author: Egor Rogov (e.rogov@postgrespro.ru)
8 Description: Plain text without any highlighting.
9 Category: common
10 */
11
12 function plaintext(hljs) {
13 return {
14 name: 'Plain text',
15 aliases: [
16 'text',
17 'txt'
18 ],
19 disableAutodetect: true
20 };
21 }
22
23 return plaintext;
24
25 })();
26 ;
27 export default hljsGrammar;