From ae259eb1fb404d2ca2eacf52a62c110f393b74c4 Mon Sep 17 00:00:00 2001 From: Eric Roy <49844173+royalmo@users.noreply.github.com> Date: Tue, 8 Apr 2025 11:10:52 +0200 Subject: [PATCH] Fix Mermaid graph on voice docs (#2631) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [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 --------- Co-authored-by: Abílio Costa --- docs/voice/overview.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/voice/overview.md b/docs/voice/overview.md index fa36b03e..d7cf3a96 100644 --- a/docs/voice/overview.md +++ b/docs/voice/overview.md @@ -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.