Files
yacy_search_server/htroot/js/languages/plaintext.js
2025-11-23 23:56:26 +01:00

29 lines
535 B
JavaScript

/*! `plaintext` grammar compiled for Highlight.js 11.11.1 */
(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);
})();