The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Rocket.Chat/apps/meteor/client/hooks/useHighlightedCode.ts

8 lines
241 B

import { useMemo } from 'react';
import hljs from '../../app/markdown/lib/hljs';
export function useHighlightedCode(language: string, text: string): string {
return useMemo(() => hljs.highlight(language, text).value, [language, text]);
}