first
This commit is contained in:
19
node_modules/highlight.js/lib/languages/plaintext.js
generated
vendored
Normal file
19
node_modules/highlight.js/lib/languages/plaintext.js
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
/*
|
||||
Language: Plain text
|
||||
Author: Egor Rogov (e.rogov@postgrespro.ru)
|
||||
Description: Plain text without any highlighting.
|
||||
Category: common
|
||||
*/
|
||||
|
||||
function plaintext(hljs) {
|
||||
return {
|
||||
name: 'Plain text',
|
||||
aliases: [
|
||||
'text',
|
||||
'txt'
|
||||
],
|
||||
disableAutodetect: true
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = plaintext;
|
Reference in New Issue
Block a user