hermes - ๐Ÿ’ก(How to fix) Fix [docs] - Voice & TTS md table malformed

Official PRs (โ€ฆ)
ON THIS PAGE

Recommended Tools

ร—6

Utilities matched from this issueโ€™s tags and category โ€” try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful ยท Quick feedback

Loadingโ€ฆ

Fix Action

Fix

Replace || with | on lines 59โ€“64:

sed -i '' '59,64 s/^||/|/' website/docs/integrations/index.md

Impact: cosmetic only.

Code Example

| Provider | Quality | Cost | API Key |
||----------|---------|------|---------|
|| **Edge TTS** (default) | Good | Free | None needed |
...

---

sed -i '' '59,64 s/^||/|/' website/docs/integrations/index.md
RAW_BUFFERClick to expand / collapse

Title

docs: "Voice & TTS Providers" table on /docs/integrations has an extra empty column

Problem

In website/docs/integrations/index.md (lines 58โ€“64), the separator and all data rows of the "Voice & TTS Providers" table start with || instead of |. Docusaurus parses the extra pipe as an empty leading cell, so the rendered table shows a blank first column and misaligned rows.

Current source

| Provider | Quality | Cost | API Key |
||----------|---------|------|---------|
|| **Edge TTS** (default) | Good | Free | None needed |
...

Repro

  1. cd website && npm install && npm start
  2. Open /docs/integrations โ†’ Voice & TTS Providers.
  3. Observe empty leading column.

Fix

Replace || with | on lines 59โ€“64:

sed -i '' '59,64 s/^||/|/' website/docs/integrations/index.md

Impact: cosmetic only.

Vote matrix ยท Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loadingโ€ฆ

Still need to ship something?

ร—6

Another batch ranked right after the header list โ€” different links, same matching logic.

Back to top recommendations

TRENDING