basant307/AI_Governance_Project
048
1/*2Language: Plain text3Author: Egor Rogov (e.rogov@postgrespro.ru)4Description: Plain text without any highlighting.5Category: common6*/7 8function plaintext(hljs) {9 return {10 name: 'Plain text',11 aliases: [12 'text',13 'txt'14 ],15 disableAutodetect: true16 };17}18 19export { plaintext as default };20 