/ src / theme / languages / plaintext.js
plaintext.js
 1  /*! `plaintext` grammar compiled for Highlight.js 11.10.0 */
 2    (function(){
 3      var hljsGrammar = (function () {
 4    'use strict';
 5  
 6    /*
 7    Language: Plain text
 8    Author: Egor Rogov (e.rogov@postgrespro.ru)
 9    Description: Plain text without any highlighting.
10    Category: common
11    */
12  
13    function plaintext(hljs) {
14      return {
15        name: 'Plain text',
16        aliases: [
17          'text',
18          'txt'
19        ],
20        disableAutodetect: true
21      };
22    }
23  
24    return plaintext;
25  
26  })();
27  
28      hljs.registerLanguage('plaintext', hljsGrammar);
29    })();