/* * Vencord, a Discord client mod * Copyright (c) 2023 Vendicated and contributors * SPDX-License-Identifier: GPL-3.0-or-later */ import { findByPropsLazy } from "@webpack"; import { Parser } from "@webpack/common"; const CodeContainerClasses = findByPropsLazy("markup", "codeContainer"); /** * Renders code in a Discord codeblock */ export function CodeBlock(props: { content?: string, lang: string; }) { return (
{Parser.defaultRules.codeBlock.react(props, null, {})}
); }