mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-04 21:02:35 +08:00
- Fix ordered lists being sent as unordered lists in WhatsApp integrations - The WhatsApp markdown renderer was converting all lists to bullet points (-), ignoring numbered list formatting - Added ordered list support by tracking list_type and list_item_number from CommonMarker AST metadata Before: Input: "1. First\n2. Second\n3. Third" Output: "- First\n- Second\n- Third" After: Input: "1. First\n2. Second\n3. Third" Output: "1. First\n2. Second\n3. Third" |
||
|---|---|---|
| .. | ||
| base_markdown_renderer.rb | ||
| instagram_renderer.rb | ||
| line_renderer.rb | ||
| plain_text_renderer.rb | ||
| telegram_renderer.rb | ||
| whats_app_renderer.rb | ||