Add Enhanced Word Export with native DOCX generation (v1.7.9)

- Created wordTemplateExporter.js module using docx npm package
- Added "DOCX (Enhanced)" option in File → Export menu
- Keyboard shortcut: Ctrl+Shift+W
- Full markdown support: headings, formatting, code, lists, tables
- No external dependencies (Pandoc/Python not required)
- Proper numbering configuration for lists
- Professional Word document output
🤖 Generated with [Claude Code](https://claude.com/claude-code)
This commit is contained in:
2025-10-26 23:54:00 +05:30
parent cd06909e2c
commit bbb51f4ca2
10 changed files with 444 additions and 11 deletions
+3 -2
View File
@@ -1,6 +1,6 @@
{
"name": "pan-converter",
"version": "1.7.8",
"version": "1.7.9",
"description": "Cross-platform Markdown editor and converter using Pandoc",
"main": "src/main.js",
"scripts": {
@@ -31,10 +31,11 @@
},
"dependencies": {
"codemirror": "^6.0.2",
"docx": "^9.5.1",
"dompurify": "^3.2.6",
"electron-store": "^10.1.0",
"html2pdf.js": "^0.10.1",
"highlight.js": "^11.11.1",
"html2pdf.js": "^0.10.1",
"marked": "^16.2.1",
"pdf-lib": "^1.17.1",
"pdfkit": "^0.14.0",