source: node_modules/highlight.js/lib/languages/plaintext.js@ 65b6638

main
Last change on this file since 65b6638 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 313 bytes
Line 
1/*
2Language: Plain text
3Author: Egor Rogov (e.rogov@postgrespro.ru)
4Description: Plain text without any highlighting.
5Category: common
6*/
7
8function plaintext(hljs) {
9 return {
10 name: 'Plain text',
11 aliases: [
12 'text',
13 'txt'
14 ],
15 disableAutodetect: true
16 };
17}
18
19module.exports = plaintext;
Note: See TracBrowser for help on using the repository browser.