@prmichaelsen/acp-visualizer 0.8.0 → 0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prmichaelsen/acp-visualizer",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "type": "module",
5
5
  "description": "Browser-based dashboard for visualizing ACP progress.yaml data",
6
6
  "bin": {
@@ -50,6 +50,7 @@
50
50
  "react-markdown": "^10.1.0",
51
51
  "recharts": "^3.8.0",
52
52
  "rehype-highlight": "^7.0.2",
53
+ "remark-gfm": "^4.0.1",
53
54
  "tailwindcss": "^4.0.6",
54
55
  "typescript": "^5.7.2",
55
56
  "vite": "^7.1.7",
@@ -1,5 +1,6 @@
1
1
  import ReactMarkdown from 'react-markdown'
2
2
  import rehypeHighlight from 'rehype-highlight'
3
+ import remarkGfm from 'remark-gfm'
3
4
  import { Link } from '@tanstack/react-router'
4
5
  import type { ProgressData } from '../lib/types'
5
6
 
@@ -83,7 +84,7 @@ export function MarkdownContent({ content, className, basePath, linkMap }: Markd
83
84
  prose-blockquote:border-gray-700 prose-blockquote:text-gray-400
84
85
  ${className ?? ''}`}
85
86
  >
86
- <ReactMarkdown rehypePlugins={[rehypeHighlight]} components={components}>
87
+ <ReactMarkdown remarkPlugins={[remarkGfm]} rehypePlugins={[rehypeHighlight]} components={components}>
87
88
  {content}
88
89
  </ReactMarkdown>
89
90
  </div>