Commit dec472f7 authored by Jan Reimes's avatar Jan Reimes
Browse files

📝 docs(convert-lo): update supported formats in documentation

parent d878a8ad
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@ No server or daemon required.
## Supported Formats

See `LibreOfficeFormat` enum in `formats.py`:

- **Text**: ODT, DOC, DOCX, RTF, PDF, HTML, TXT, MD, EPUB
- **Spreadsheet**: ODS, XLS, XLSX, CSV
- **Presentation**: ODP, PPT, PPTX
@@ -56,5 +57,5 @@ uv run pytest tests/convert-lo/ --cov=convert_lo
## Implementation Notes

1. **Thread Safety**: Conversions run sequentially (LibreOffice is not thread-safe)
2. **Timeout**: Default 5 minute timeout per file
3. **No Server Required**: CLI mode is always available
1. **Timeout**: Default 5 minute timeout per file
1. **No Server Required**: CLI mode is always available
+3 −3
Original line number Diff line number Diff line
@@ -55,9 +55,9 @@ result = converter.convert(

## Supported Formats

**Text**: ODT, DOC, DOCX, RTF, PDF, HTML, TXT, MD, EPUB  
**Spreadsheet**: ODS, XLS, XLSX, CSV  
**Presentation**: ODP, PPT, PPTX  
**Text**: ODT, DOC, DOCX, RTF, PDF, HTML, TXT, MD, EPUB\
**Spreadsheet**: ODS, XLS, XLSX, CSV\
**Presentation**: ODP, PPT, PPTX\
**Graphics**: ODG, SVG

```python