plaintext.js 311 B

12345678910111213141516
  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. function plaintext(hljs) {
  8. return {
  9. name: 'Plain text',
  10. aliases: ['text', 'txt'],
  11. disableAutodetect: true
  12. };
  13. }
  14. module.exports = plaintext;