l0bsterssg

node.js static responsive blog post generator
Log | Files | Refs | README

plaintext.js (311B)


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