You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`parxy parse`| Extract text content from documents with customizable detail levels and output formats. Process files or folders with multiple drivers. |
14
14
|`parxy preview`| Interactive document viewer with metadata, table of contents, and scrollable content preview |
15
-
|`parxy markdown`| Convert parsed documents into Markdown format (optionally combine multiple files) |
15
+
|`parxy markdown`| Convert documents to Markdown files, with support for multiple drivers and folder processing|
16
16
|`parxy pdf:merge`| Merge multiple PDF files into one, with support for page ranges |
17
17
|`parxy pdf:split`| Split a PDF file into individual pages |
18
18
|`parxy drivers`| List available document processing drivers |
@@ -176,27 +176,68 @@ This is ideal for quick document inspection before running a full parsing operat
176
176
177
177
## Converting to Markdown
178
178
179
-
The `markdown` command converts parsed documents into Markdown format, preserving structure such as headings and lists.
179
+
The `markdown` command converts documents to Markdown format, preserving structure such as headings and lists. It follows the same conventions as the `parse` command: output files are prefixed with the driver name and saved next to the source file by default.
180
+
181
+
### Basic Usage
180
182
181
183
```bash
182
184
parxy markdown document.pdf
183
185
```
184
186
185
-
Output is printed to the console by default. To save Markdown files to disk:
187
+
This creates a `pymupdf-document.md` file in the same directory as the source file.
0 commit comments