Add MarkItDown Flutter Edition — offline Windows/Android/Web GUI#2220
Open
rakibhassanrh66 wants to merge 3 commits into
Open
Add MarkItDown Flutter Edition — offline Windows/Android/Web GUI#2220rakibhassanrh66 wants to merge 3 commits into
rakibhassanrh66 wants to merge 3 commits into
Conversation
Author
|
@microsoft-github-policy-service agree |
rakibhassanrh66
force-pushed
the
flutter-edition
branch
from
July 16, 2026 20:42
7adedae to
4eca34d
Compare
An offline, cross-platform Flutter GUI that reimplements markitdown's conversion in pure Dart, so anyone can convert files to Markdown without Python or a terminal. Lives under apps/flutter/ and does not touch the existing Python packages.
rakibhassanrh66
force-pushed
the
flutter-edition
branch
from
July 16, 2026 21:11
4eca34d to
3d8b7e2
Compare
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.
What this is
A small, offline, cross-platform GUI for MarkItDown, built with Flutter and
living entirely under
apps/flutter/. It does not modify or depend on theexisting Python packages — it's a self-contained frontend so non-technical users
can convert files to Markdown without Python or a terminal, on Windows,
Android, and the Web from one codebase.
Why it might be useful
MarkItDown is fantastic, but today it needs a Python environment. This makes the
same idea reachable to everyone: drag a file in, get clean Markdown, copy or save
it — 100% on-device, nothing uploaded.
How it works
All conversion logic was reimplemented in pure Dart (there are no
mammoth/pandas/pdfminer equivalents for Dart), so it runs fully offline on
desktop, mobile, and in the browser:
styles.xml, tables, links, bold/italic)html2md; CSV / JSON / XML to tables/outlinesI validated the Dart converters against this repo's own
tests/test_filesusing the
_test_vectors.pyexpectations (docx/xlsx/pptx/pdf/json/html/epub allproduce the expected content).
Honest note
I completely understand if a full Flutter app inside a Python repo isn't the
right fit to merge. If so, I'd be glad to instead have it listed as a community
project / third-party frontend in the README — whatever you prefer. Opening
this mainly to share it and get your guidance.
Authored by @rakibhassanrh66.