diff --git a/src/components/MarkdownRenderer.tsx b/src/components/MarkdownRenderer.tsx index bbddde7..2f18762 100644 --- a/src/components/MarkdownRenderer.tsx +++ b/src/components/MarkdownRenderer.tsx @@ -149,6 +149,11 @@ const MarkdownRenderer = ({ pre: { component: ({ children }) => children, }, + a: { + component: (props) => ( + + ), + }, // Prevent rendering of certain HTML elements for security iframe: () => null, // Don't render iframes script: () => null, // Don't render scripts diff --git a/src/components/ThinkBox.tsx b/src/components/ThinkBox.tsx index edfd7ab..c54ea4e 100644 --- a/src/components/ThinkBox.tsx +++ b/src/components/ThinkBox.tsx @@ -12,7 +12,6 @@ interface ThinkBoxProps { const ThinkBox = ({ content, expanded, onToggle }: ThinkBoxProps) => { // Don't render anything if content is empty - console.log('ThinkBox content:', content); if (!content) { return null; }