@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
15 lines (14 loc) • 615 B
JavaScript
import { visit } from 'unist-util-visit';
// katex-directive
// 给 class="katex" 的节点加上 dir="ltr" 属性
// eslint-disable-next-line unicorn/consistent-function-scoping
export var rehypeKatexDir = function rehypeKatexDir() {
return function (tree) {
visit(tree, 'element', function (node) {
var _node$properties;
if ((_node$properties = node.properties) !== null && _node$properties !== void 0 && (_node$properties = _node$properties.className) !== null && _node$properties !== void 0 && _node$properties.includes('katex')) {
node.properties.dir = 'ltr';
}
});
};
};