Fix Mermaid graph on voice docs (#2631)

* [Fix] Mermaid graph on voice docs

Mermaid arrows' messages were treated as markdown lists, making the renderer fail both in GitHub and HomeAssistant's webpage. Adding `\` before the dots prevents this from happening and removes the error "Unsupported markdown: list", displaying the useful documentation instead.

* Update docs/voice/overview.md

Co-authored-by: Abílio Costa <abmantis@users.noreply.github.com>

---------

Co-authored-by: Abílio Costa <abmantis@users.noreply.github.com>
This commit is contained in:
Eric Roy 2025-04-08 11:10:52 +02:00 committed by GitHub
parent f3e6cf205f
commit ae259eb1fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,16 +14,16 @@ graph TD;
C[Conversation]
I[Intent]
TTS[Text-to-Speech]
U -->|1. Speech + Metadata| VA;
VA -->|2. Speech| STT
STT -->|3. Sentence| VA
VA -->|4. Sentence +\n Metadata| C
C -->|5. Intent| I
I -->|6. Intent Response| C;
C -->|7. Intent Response| VA;
VA -->|8. Intent Response| TTS
TTS -->|9. Response Audio| VA
VA -->|10. Response Audio| U
U -->|1\. Speech + Metadata| VA;
VA -->|2\. Speech| STT
STT -->|3\. Sentence| VA
VA -->|4\. Sentence + Metadata| C
C -->|5\. Intent| I
I -->|6\. Intent Response| C;
C -->|7\. Intent Response| VA;
VA -->|8\. Intent Response| TTS
TTS -->|9\. Response Audio| VA
VA -->|10\. Response Audio| U
```
- The **Assist Pipeline** integration is responsible for turning the user's speech into text, get it processed, and turn the response into speech.