You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
313 B

6 months ago
  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;