- 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" |
||
|---|---|---|
| .. | ||
| markdown_renderer_service_spec.rb | ||
| mention_service_spec.rb | ||
| new_message_notification_service_spec.rb | ||
| send_email_notification_service_spec.rb | ||
| status_update_service_spec.rb | ||