mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
29 lines
No EOL
534 B
JavaScript
29 lines
No EOL
534 B
JavaScript
/*! `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);
|
|
})(); |