First commit
This commit is contained in:
commit
440f5a7df4
1563 changed files with 217996 additions and 0 deletions
29
static/highlight/languages/plaintext.js
Normal file
29
static/highlight/languages/plaintext.js
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
/*! `plaintext` grammar compiled for Highlight.js 11.9.0 */
|
||||
(function(){
|
||||
var hljsGrammar = (function () {
|
||||
'use strict';
|
||||
|
||||
/*
|
||||
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
|
||||
};
|
||||
}
|
||||
|
||||
return plaintext;
|
||||
|
||||
})();
|
||||
|
||||
hljs.registerLanguage('plaintext', hljsGrammar);
|
||||
})();
|
||||
Loading…
Add table
Add a link
Reference in a new issue