11@ {
22 RootModule = ' MarkdownPointer.psm1'
3- ModuleVersion = ' 0.9 .0'
3+ ModuleVersion = ' 0.10 .0'
44 GUID = ' 4c50c9c4-d155-457d-a3a3-e3952253b51d'
55 Author = ' Yoshifumi Tsuda'
66 Copyright = ' (c) 2025-2026 Yoshifumi Tsuda. All rights reserved.'
@@ -11,6 +11,7 @@ Click any element in the rendered preview to copy a location reference:
1111 "Rewrite this: [C:\docs\notes.md:42] ## My Section"
1212 "Fix the grammar here [ref]"
1313 "Translate this section to Japanese [ref]"
14+ "Swap these two: [ref] [ref]"
1415 "Add a code example after this section [ref]"
1516
1617Renders Markdown with Mermaid diagrams, KaTeX math, and SVG. Includes MCP server for Claude Code / Claude Desktop.
@@ -20,9 +21,10 @@ Requirements:
2021 Pandoc (optional, for .docx export) - https://pandoc.org
2122
2223Quick start:
23- mdp .\README.md # Open a file
24- mdp .\docs\*.md # Open multiple files
25- ConvertTo-Docx .\*.md # Convert to .docx via Pandoc
24+ mdp .\README.md # Open a file
25+ mdp .\docs\*.md # Open multiple files
26+ ConvertTo-Docx .\*.md # Convert to .docx via Pandoc
27+ ConvertTo-Pptx .\slides.md # Convert to .pptx via Pandoc
2628
2729MCP setup for Claude Code:
2830 claude mcp add mdp -s user -- "$(Get-MarkdownPointerMCPPath)"
@@ -37,7 +39,7 @@ Example prompts for AI:
3739 "export report.md to docx"
3840'@
3941 PowerShellVersion = ' 7.4'
40- FunctionsToExport = @ (' Show-MarkdownPointer' , ' Get-MarkdownPointerMCPPath' , ' ConvertTo-Docx' )
42+ FunctionsToExport = @ (' Show-MarkdownPointer' , ' Get-MarkdownPointerMCPPath' , ' ConvertTo-Docx' , ' ConvertTo-Pptx ' )
4143 CmdletsToExport = @ ()
4244 VariablesToExport = @ ()
4345 AliasesToExport = @ (' mdp' )
@@ -47,6 +49,14 @@ Example prompts for AI:
4749 LicenseUri = ' https://github.com/yotsuda/MarkdownPointer/blob/master/LICENSE'
4850 ProjectUri = ' https://github.com/yotsuda/MarkdownPointer'
4951 ReleaseNotes = @'
52+ 0.10.0
53+ - Export SVG images as PNG in .docx/.pptx export (embedded fonts preserved)
54+ - Mermaid/SVG pre-processing now applies to .pptx export (previously .docx only)
55+ - Rename MCP tool export_docx → export_document, add .pptx support
56+ - MCP/PS export routes through mdp.exe for Mermaid/SVG conversion (Pandoc fallback)
57+ - ConvertTo-Pptx: new PowerShell function for .pptx export via Pandoc
58+ - Template parameter (-Template) for ConvertTo-Docx, ConvertTo-Pptx, and MCP tool
59+
50600.9.0
5161- Redesign welcome screen: action-first layout with recent folders/files front and center
5262- VS Code button opens at the current viewport line (code -g)
0 commit comments