|
@@ -136,7 +136,6 @@ function escapeBrackets(text: string) {
|
|
|
|
|
|
|
|
function _MarkDownContent(props: { content: string }) {
|
|
function _MarkDownContent(props: { content: string }) {
|
|
|
const escapedContent = useMemo(() => {
|
|
const escapedContent = useMemo(() => {
|
|
|
- console.log("================", props.content);
|
|
|
|
|
return escapeBrackets(escapeDollarNumber(props.content));
|
|
return escapeBrackets(escapeDollarNumber(props.content));
|
|
|
}, [props.content]);
|
|
}, [props.content]);
|
|
|
|
|
|