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
Add documentation for three previously undocumented CLI flags in the user guide:
- --relax-bibtex: Enables relaxed BibTeX parsing for handling malformed files
- --confirm: Skips confirmation prompt for clear-cache automation
- Backend filtering: Allows selective sync of specific backends
These flags existed in the CLI implementation but were missing from user documentation.
Organized under appropriate sections with usage examples and use cases.
Resolves#202
Co-authored-by: florath-ai-assistant[bot] <Andreas.Florath@telekom.de>
Copy file name to clipboardExpand all lines: docs/user-guide.md
+61-2Lines changed: 61 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -179,6 +179,26 @@ submit: check-refs
179
179
submit-manuscript.sh
180
180
```
181
181
182
+
#### Handling Malformed BibTeX Files
183
+
184
+
When working with BibTeX files from various sources, you may encounter files with non-standard formatting or syntax issues. The `--relax-bibtex` flag enables relaxed parsing mode to handle these cases:
185
+
186
+
```bash
187
+
# Enable relaxed parsing for malformed BibTeX files
- Processing BibTeX files from different bibliography managers
196
+
- Handling files with non-standard formatting
197
+
- Working with legacy or auto-generated BibTeX files
198
+
- Troubleshooting parsing errors
199
+
200
+
This flag allows the parser to be more forgiving of common BibTeX syntax issues while still extracting journal information for assessment. See `src/aletheia_probe/cli.py` for implementation details.
0 commit comments