Path: blob/master/src/packages/frontend/components/markdown.tsx
1503 views
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { HTML } from "./html";6import { markdown_to_html } from "../markdown";7import { Props as HTMLProps } from "./html";89type Props = HTMLProps & {10// inject data attributes with line numbers to enable reverse search:11line_numbers?: boolean;12};1314export function Markdown(props: Props) {15function to_html() {16if (!props.value) {17return;18}19return markdown_to_html(props.value, {20line_numbers: props.line_numbers,21});22}2324return (25<HTML26id={props.id}27auto_render_math={true}28preProcessMath={false}29value={to_html()}30style={props.style}31project_id={props.project_id}32file_path={props.file_path}33className={props.className}34href_transform={props.href_transform}35post_hook={props.post_hook}36safeHTML={props.safeHTML ?? true}37reload_images={props.reload_images}38smc_image_scaling={props.smc_image_scaling}39highlight_code={props.highlight_code ?? true}40content_editable={props.content_editable}41onClick={props.onClick}42onDoubleClick={props.onDoubleClick}43/>44);45}464748