d98c5caca3e80fc84b148e48d1514ac1d871519b512a1555d40bd88670fc7c57c1d4158da638ad739cfe86dcefa3fbb55dda3c94204b9ed3987aac9368a0f4 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;