docs(e/e52c): close unclosed 4-backtick code block hiding iStoreOS expansion images#1804
Merged
Milir-Radxa merged 1 commit intoJun 5, 2026
Conversation
…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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
In the English E52C quick-start, the "Connecting to Radxa E52C via SSH"
` tags) are all rendered as raw text
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 seveninside 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 codeblock. 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
Notes
```bash/```pair around the SSH command and never had thisbug. 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.
fine; no change needed there.
radxa-e52c-istoreos- expansion-*.webp) already exist instatic/img/e/e52c/and areintact — the bug was purely that they were inside a code block.
Verification
git diff fc6557490..HEADis one file, 2 insertions / 5 deletions.is the only thing inside the
bashcode block, "## System login"and "## istoreos expansion" are now headings, and the seven
<img>tags are now treated as images.