storkit: accept 384_story_whatsapp_markdown_to_whatsapp_formatting_conversion

This commit is contained in:
dave
2026-03-25 01:34:08 +00:00
parent 195c7c51c4
commit d4dad1d556
3 changed files with 0 additions and 42 deletions

View File

@@ -0,0 +1,23 @@
---
name: "WhatsApp markdown-to-WhatsApp formatting conversion"
---
# Story 384: WhatsApp markdown-to-WhatsApp formatting conversion
## User Story
As a WhatsApp user, I want bot messages to use WhatsApp-native formatting instead of raw markdown, so that headers, bold text, and links render properly.
## Acceptance Criteria
- [ ] Headers (# ## ### etc.) are converted to bold text (*Header*) in WhatsApp messages
- [ ] Markdown bold (**text**) is converted to WhatsApp bold (*text*)
- [ ] Markdown strikethrough (~~text~~) is converted to WhatsApp strikethrough (~text~)
- [ ] Markdown links [text](url) are converted to readable format: text (url)
- [ ] Code blocks and inline code are preserved as-is (already compatible)
- [ ] Matrix bot formatting is completely unaffected (conversion only applied in WhatsApp send paths)
- [ ] Existing WhatsApp chunking (4096 char limit) still works correctly after conversion
## Out of Scope
- TBD