Bridgex delegates all file parsing to the Markitdown-rs library and exposes every format it supports through a native file-open dialog. When you trigger File → Open (or pressDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/dev2forge/bridgex/llms.txt
Use this file to discover all available pages before exploring further.
Ctrl+O / ⌘+O), the dialog presents individual per-format filters as well as a combined “All allowed files” filter so you can browse everything at once. The sections below describe each supported format, its accepted extensions, and any special behaviour to be aware of.
File-format filters
The file-open dialog in Bridgex is built from the following filters, taken directly from theopen_file() function in menu.rs:
- All formats at a glance
- Detailed notes
| Filter label | Extensions | Category |
|---|---|---|
| Excel | .xlsx, .xls | Spreadsheets |
| Word | .docx | Documents |
| PowerPoint | .pptx | Presentations |
.pdf | Portable documents | |
| HTML | .html, .htm | Web pages |
| Images | .jpg, .jpeg | JPEG images |
| CSV | .csv | Comma-separated values |
| RSS / XML | .xml, .rss, .atom | Feeds and structured XML |
| ZIP | .zip | Archives |
”All allowed files” filter
The dialog also offers an All allowed files entry that combines every extension listed above into a single filter. This lets you navigate to any supported file without switching filter categories. Under the hood this is equivalent to selecting all nine individual filters simultaneously — no extensions outside that set are accepted through the dialog.JPEG images and LLM descriptions
JPEG files (.jpg and .jpeg) receive special handling in Bridgex because image pixels cannot be directly transcribed to text. The conversion outcome depends on whether an LLM provider is configured in Help → LLM API Key.
- Without LLM configured
- With LLM configured
When no LLM API key or provider is set, Markitdown-rs attempts a basic conversion. If no textual content can be extracted from the file, the editor will display:No
# Description: section is added to the output.Unsupported file types
If a file is opened whose extension is not in the supported list, or if Markitdown-rs cannot parse a nominally supported file, Bridgex displays the following message in the editor:Format coverage summary
Office documents
Excel (
.xlsx, .xls), Word (.docx), and PowerPoint (.pptx) files are fully supported with structural Markdown output.Web and data
HTML (
.html, .htm) and CSV (.csv) convert cleanly; RSS/XML (.xml, .rss, .atom) feeds produce structured Markdown.Portable Document Format (
.pdf) text is extracted by Markitdown-rs. Scanned or image-only PDFs may produce limited output.Images
Only JPEG (
.jpg, .jpeg) is supported. PNG, GIF, WebP, and other image formats are not accepted by the file dialog.