* feat(marketplace): add md2docx 0.0.1 plugin
Converts Markdown to polished DOCX inside Dify workflows.
- 3 tools: Markdown to DOCX (6 params), Markdown to DOCX Advanced
(19 params with full font/size/margin control), and Mermaid to
Image (standalone Mermaid diagram -> PNG).
- 6 style profiles with built-in Chinese/English reference templates:
technical, business, official (GB/T 9704-2012), academic, thesis
(GB/T 7713), template.
- Pandoc binary is bundled inside the pypandoc-binary pip wheel;
no runtime download.
- Mermaid rendering via the Mermaid Ink API (HTTPS, opt-out via
mermaid_enabled=false, or self-hosted via mermaid_api_url).
- Source repository: https://github.com/AlexMultiAgent/mdocx-converter
- Privacy policy: declared in manifest.yaml (privacy: ./PRIVACY.md).
Risk level: Medium - sends user-controlled Mermaid code to a third-
party HTTPS API (Mermaid Ink) and writes to local temp files.
* chore(marketplace): repack md2docx 0.0.1 with GB/T 9704 (no year suffix)
---------
Co-authored-by: AlexMultiAgent <alexmultiagent@users.noreply.github.com>
- _resolve_language: TW/HK/MO CJK text now resolves to zh-Hant
- Error/empty paths now yield all 14 output variables for downstream workflow safety
- _retry_request: HTTP 429 and 503 are now retried with exponential backoff
- english_noise tokens sorted by length descending
- Dead ZH_HANS fallback replaced with empty list in _extract_cjk_location_fragments
- Fix length score discontinuities across all boundaries
- Expand tokenizer CJK character ranges
- Improve exception handling with error visibility
- Increase compression_ratio precision
- Use CJK ellipsis for CJK text truncation
- Add .difyignore for clean packaging