storkit: create 384_story_whatsapp_markdown_to_whatsapp_formatting_conversion

This commit is contained in:
dave
2026-03-24 21:33:44 +00:00
parent 618a2779ff
commit d8cbec8268

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