Add error handling for result display#2876
Open
asinghvi17 wants to merge 4 commits into
Open
Conversation
Handle errors that happen when a result gets displayed in an example block (via `display_dict`). This often crops up when trying to latexify things, and the idea is that it should cause an error but not crash the doc build. I'm not sure how you are supposed to log the error such that `warnonly` specifiers will catch it, though, so some help there would be great.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Collaborator
Author
|
Looks like CI errors were only on nightly (maybe due to Markdown stdlib changes) |
fingolfin
approved these changes
Feb 15, 2026
Collaborator
|
Do you have any example that reproduces the error, which could be used as basis for a test case? |
Collaborator
|
This seems very similar to issue #1631 |
Member
|
I feel that the right place for the error handling would actually be inside the And I guess the second question is whether we want the Documenter build succeed still if we hit this or fail? I'd always lean towards the latter, even if it is due to a buggy |
asinghvi17
commented
Mar 3, 2026
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.
Handle errors that happen when a result gets displayed in an example block (via
display_dict).This often crops up when trying to latexify things, and the idea is that it should cause an error but not crash the doc build. I'm not sure how you are supposed to log the error such that
warnonlyspecifiers will catch it, though, so some help there would be great.