FoldRender / Guides / Open HTML files, alongside the rest of your repo
FoldRender guide

Open HTML files, alongside the rest of your repo

This is the shortest guide in the set, and deliberately so: HTML support in FoldRender is a small, sharply bounded feature, and padding it out would mean inventing capabilities. It opens a .html file from the file tree in a fenced-in viewer. Here is exactly what that viewer does — and, more usefully, what it will not do, because that is the part that decides whether it is any use to you.

Get it on Google Playfree See what FoldRender does

Step by step

  1. Install from Google Play

    FoldRender is on the Play Store as FoldRender: Git Repo Reader, package id dev.foldrender.app, free and distributed worldwide. Install it the ordinary way — no allow installs from this source prompt to approve, and updates arrive on their own. The app declares minSdk 30, so it needs Android 11 or newer; Play will tell you if a device is below that rather than letting you install a build that cannot run.

  2. Open the .html file

    From a workspace: tap the row in the Files tab — HTML files are badged HTML. From outside the app: choose Render in the “Open with” list, since FoldRender registers for text/html, application/xhtml+xml and the .html extension. Detection also falls back to content, so a file whose first non-whitespace bytes are <!doctype html> or <html> routes here even without the extension.

  3. Read it, and zoom if you need to

    The page renders in a WebView with JavaScript disabled, file access disabled and content access disabled. Pinch-zoom controls are enabled without the on-screen zoom buttons, so you can scale a page laid out for a desktop width.

  4. Expect links to leave, not navigate

    Every navigation attempt is intercepted and handed back to the app rather than followed in place. This is a viewer for one file, not a browser you can click around inside.

How FoldRender handles it

One file, no browser

This is the one WebView in the app that shows your content, and it is fenced in on purpose: no JavaScript, no file access, no content access, and every link handed back to the shell. FoldRender is a document reader, and a general-purpose browser is a different product with a different threat model.

Useful for what it is useful for

Self-contained HTML — an exported report, a coverage summary, a single-file documentation page, or an export FoldRender itself produced with everything inlined — opens from the repository tree without leaving the app.

Where HTML sits among the formats

It is one of eleven renderers, chosen by score over name, MIME type and magic bytes. Markdown, source, PDF and notebooks are the formats verified on a clean device; HTML is described here from the shipped implementation.

What does FoldRender not do?

The honest list — shipped-but-unverified behaviour included, so you can tell before installing whether this build does the thing you came for.

How does FoldRender compare with the other ways to read a repo on Android?

Four apps people actually reach for, and the one axis that separates them: whether the repository ends up on the phone, and whether anything renders it once it is there.

ToolDownload priceWhere you get itClones to the deviceRenders PDF / notebook / MarkdownEditor or shell
FoldRender 0.8.2US$0Google Play, worldwideYes — HTTPS, anonymous for public reposYes — native Compose renderersNo, deliberately: a reader, not an IDE
GitHub MobileUS$0Google Play and the App StoreNo — it reads repositories hosted on GitHubOnly what GitHub itself renders, onlineEdits files inside a pull request
Termux + gitUS$0F-Droid or GitHubYes — the real git CLINo — terminal text onlyYes, a full shell and any CLI editor
MGit 1.7.0 (2023)US$0F-Droid onlyYes — clone, pull, push, HTTPS or SSH keysNoNo — its own listing says it ships no text editor

Prices are for the download. GitHub Mobile’s capabilities follow your GitHub plan; Termux and MGit are both free software. MGit’s version and date are from its F-Droid listing.

What are the numbers behind FoldRender?

Every figure here is read out of the shipping build or off a primary source listed at the foot of this page — nothing is rounded up for effect.

FAQ

Can FoldRender open HTML files on a foldable?
Yes, in a deliberately limited viewer: JavaScript off, file and content access off, links handed back to the app rather than followed. It renders the markup in the file itself.
Why does my page look unstyled?
Because the page is loaded with no base URL, so relative references to a stylesheet, script or image next to the file cannot resolve. HTML with everything inline renders as intended; HTML that depends on sibling assets does not.
Is it a browser?
No, and not accidentally. There is no address bar, no tabs, no history and no JavaScript, and every navigation is intercepted and returned to the app. It is a viewer for one file.
Can I search inside an HTML file?
No. The find bar is offered for text-shaped renderers — Markdown, notebooks, source, logs, plain text, CSV and JSON/YAML/TOML. HTML, PDF and images do not have it.
What is it actually good for?
Self-contained HTML in a repository: exported reports, coverage summaries, single-file docs — including the self-contained HTML that FoldRender's own export produces, which inlines fonts, math, diagrams and images as data URIs.
How much does FoldRender cost?
US$0. It is free on Google Play, distributed worldwide, with no billing library in the build, no subscription and no paid tier. The current release is version 0.8.2.
Which Android versions does FoldRender run on?
Android 11 and newer. The app declares minSdk 30 — the API level Android 11 shipped with in 2020 — and is compiled and targeted against API 36. It is developed and tested on a Galaxy Z Fold 7, which launched in 2025.
Does FoldRender work offline?
Yes, once a repository is on the device. Cloning and pulling need the network; reading, searching, and rendering Markdown, source, PDFs and notebooks out of a clone or a picked folder do not. Signing in to GitHub is optional and only matters for private repositories.
How is this different from GitHub Mobile, Termux or MGit?
GitHub Mobile reads repositories hosted on GitHub and does not clone to the phone. Termux and MGit both clone and then leave rendering to you — Termux gives you a shell, MGit ships no text editor at all. FoldRender clones over HTTPS and renders what it clones, on the inner screen.

Where can I check these claims?

The primary documents behind the figures above, so you can confirm any of them without taking our word for it.

Page last reviewed 2026-08-27, against FoldRender 0.8.2.

More FoldRender guides