{"version":3,"file":"20016.2e78371c.js","sources":["webpack://app/./src/components/markdown/code.module.scss?feba","webpack://app/./src/components/markdown/markdown.module.scss?4fc9","webpack://app/./src/components/markdown/CurieMarkdown.tsx","webpack://app/./src/components/markdown/HightlightedCode.tsx","webpack://app/./src/components/markdown/a.tsx","webpack://app/./src/components/markdown/code.tsx","webpack://app/./src/components/markdown/header.tsx","webpack://app/./src/components/markdown/img.tsx","webpack://app/./src/components/markdown/strong.tsx","webpack://app/./src/components/markdown/table.tsx","webpack://app/./src/hooks/utils/useThrottledState.tsx","webpack://app/./src/services/analyticsService.ts","webpack://app/./src/store/index.ts","webpack://app/./src/utils/storage.tsx"],"sourcesContent":["// extracted by css-extract-rspack-plugin\nexport default {\"codeblock\":\"codeblock-YL9nD7\",\"header\":\"header-bFI4cM\",\"copyButton\":\"copyButton-DZJ8tW\"};","// extracted by css-extract-rspack-plugin\nexport default {\"markdown\":\"markdown-z_gJ0J\"};","import { memo } from 'react'\nimport Markdown, { defaultUrlTransform } from 'react-markdown'\nimport rehypeRaw from 'rehype-raw'\nimport remarkGfm from 'remark-gfm'\nimport {\n a,\n Code as code,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n img,\n Pre as pre,\n strong,\n table,\n td,\n th,\n tr\n} from '~/components/markdown'\nimport { cm } from '~/utils/utils'\nimport styles from './markdown.module.scss'\n\ninterface Props {\n text: string\n fontSize?: 'sm' | 'base'\n className?: string\n}\n\nconst CurieMarkdown = ({ text, fontSize = 'base', className }: Props) => {\n return (\n
\n {children}\n
\n )\n})\n\ninterface PreProps {\n children: ReactNode\n}\n\nexport const Pre: FC