mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
23 lines
498 B
TypeScript
23 lines
498 B
TypeScript
import { marked } from "..";
|
|
import { matcher } from "../matcher";
|
|
import Link from "./Link";
|
|
import PlainText from "./PlainText";
|
|
|
|
export const EMPHASIS_REG = /\*(.+?)\*/;
|
|
|
|
const renderer = (rawStr: string) => {
|
|
const matchResult = matcher(rawStr, EMPHASIS_REG);
|
|
if (!matchResult) {
|
|
return rawStr;
|
|
}
|
|
|
|
const parsedContent = marked(matchResult[1], [], [Link, PlainText]);
|
|
return <em>{parsedContent}</em>;
|
|
};
|
|
|
|
export default {
|
|
name: "emphasis",
|
|
regexp: EMPHASIS_REG,
|
|
renderer,
|
|
};
|