Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit e1ef9b9

Browse files
authored
Update MarkdownCell.tsx
1 parent 1f594b6 commit e1ef9b9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/components/cellTypes/MarkdownCell.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@ const MarkdownCell = (mdProps: CellComponentProps) => {
1919
mdRef.current.innerHTML = "";
2020
MarkdownService.renderMarkdown(
2121
defaultCell,
22-
(markdownRow[tableColumn.key] as Link).markdown(),
22+
(markdownRow[tableColumn.key] as Link).markdown(), // .replaceAll(",","\\,"), not working - puts \ in output
2323
mdRef.current,
24-
5
24+
5,
25+
false
2526
);
27+
2628
}
29+
console.log((markdownRow[tableColumn.key] as Link).markdown()) // okay
2730
});
2831
return (
2932
<span

0 commit comments

Comments
 (0)