plaintext.js 313 B

12345678910111213141516171819
  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: [
  11. 'text',
  12. 'txt'
  13. ],
  14. disableAutodetect: true
  15. };
  16. }
  17. module.exports = plaintext;