You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Text-to-Speech (TTS) feature has an issue when converting Markdown text to audio. It reads specific Markdown syntax, such as ### for headings, instead of ignoring these markers and focusing only on the textual content. This results in an unnatural and inconsistent user experience.
Steps to Reproduce:
Provide a Markdown-formatted text to the TTS feature, for example:
### Example Heading
Here is a paragraph.
Trigger the audio conversion.
Listen to the output.
Current Result:
The TTS reads:
"Hashtag hashtag hashtag Example Heading Here is a paragraph."
Expected Result:
The TTS should ignore Markdown syntax and read only the textual content:
"Example Heading. Here is a paragraph."
Impact:
This bug affects the clarity of audio conversion, making it less practical for professional or educational use.
Proposed Fix:
Implement a pre-processing step that:
Strips or ignores Markdown syntax from the input text before passing it to the TTS engine.
Ensures Markdown styling does not interfere with the readability of the content.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Description:
The Text-to-Speech (TTS) feature has an issue when converting Markdown text to audio. It reads specific Markdown syntax, such as ### for headings, instead of ignoring these markers and focusing only on the textual content. This results in an unnatural and inconsistent user experience.
Steps to Reproduce:
### Example Heading Here is a paragraph.Current Result:
The TTS reads:
Expected Result:
The TTS should ignore Markdown syntax and read only the textual content:
Impact:
This bug affects the clarity of audio conversion, making it less practical for professional or educational use.
Proposed Fix:
Implement a pre-processing step that:
Labels:
bug,text-to-speech,markdownBeta Was this translation helpful? Give feedback.
All reactions