Skip to content

docs(e/e52c): close unclosed 4-backtick code block hiding iStoreOS expansion images#1804

Merged
Milir-Radxa merged 1 commit into
radxa-docs:mainfrom
tangzz-radxa:docs/fix-e52c-en-unclosed-codeblock
Jun 5, 2026
Merged

docs(e/e52c): close unclosed 4-backtick code block hiding iStoreOS expansion images#1804
Milir-Radxa merged 1 commit into
radxa-docs:mainfrom
tangzz-radxa:docs/fix-e52c-en-unclosed-codeblock

Conversation

@tangzz-radxa
Copy link
Copy Markdown
Contributor

Summary

In the English E52C quick-start, the "Connecting to Radxa E52C via SSH"
section is wrapped in a malformed 4-backtick code block. The opening
fence is a 4-backtick line, the inner content (including a \``textfence) is treated as literal text, and the closing fence is again 4 backticks. The result: the SSH command, "## System login", the Debian / iStoreOS default-account block, and the entire "## istoreos expansion" section (with its seven` tags) are all rendered as raw text
inside one big code block, which is why the expansion images never
show up in the docs.

Replace the broken 4-backtick fences with a normal \``bash/```` pair so the SSH command is the only thing inside the code
block. Everything from "## System login" through the 7 expansion images
now renders as Markdown again.

Issue

Fixes #1799 (E52C quick-start: "istoreos expansion: images missing /
not showing").

Diff

 5. Connecting to Radxa E52C via SSH

-````
-
+```bash
 ssh [username]@[IP address] # or ssh [username]@[hostname]
-
-```text
+```

 ## System login
 ...
 <img src="/img/e/e52c/radxa-e52c-istoreos-expansion-7.webp" width="700" alt="e52c-istoreos" />
-````

Notes

  • Chinese source is unaffected — the Chinese version uses a normal
    ```bash / ``` pair around the SSH command and never had this
    bug. The local PR guard flags "missing Chinese counterpart" because
    it assumes English and Chinese are always changed in lockstep, but
    in this case only the English translation is broken and there is
    nothing to sync on the Chinese side.
  • E20C English quick-start uses the correct fence pattern and renders
    fine; no change needed there.
  • The downstream 7 expansion images themselves (radxa-e52c-istoreos- expansion-*.webp) already exist in static/img/e/e52c/ and are
    intact — the bug was purely that they were inside a code block.

Verification

  • git diff fc6557490..HEAD is one file, 2 insertions / 5 deletions.
  • Manual render check on the patched section confirms the SSH command
    is the only thing inside the bash code block, "## System login"
    and "## istoreos expansion" are now headings, and the seven <img>
    tags are now treated as images.

…s expansion images

In the English quick-start, the "Connecting to Radxa E52C via SSH"
section opens a 4-backtick code fence but the inner content (```text)
and the closing fence are mismatched, so the surrounding parser
captures everything from the SSH command through "## System login" and
the entire "## istoreos expansion" image block as a single literal
code block. That is why the seven expansion images show up as raw
"<img ...>" text in the rendered docs and never appear as images.

Replace the 4-backtick fences with a proper ```bash / ``` pair so
the SSH command is the only thing inside the code block, and the rest
of the section renders as Markdown again.

Fixes radxa-docs#1799
@tangzz-radxa tangzz-radxa requested a review from a team as a code owner June 5, 2026 01:48
@Milir-Radxa Milir-Radxa merged commit 1846504 into radxa-docs:main Jun 5, 2026
5 of 6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Issue from e/e52c/getting-started/quick-start

2 participants