Files
chatapp/backend/static/highlight(1)/es/languages/plaintext.js
T
2025-10-11 01:52:21 +01:00

27 lines
484 B
JavaScript

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