Show More
@@ -538,9 +538,19 b' class MarkupRenderer(object):' | |||
|
538 | 538 | body = '\n'.join([header, css, js, body]) |
|
539 | 539 | return body, resources |
|
540 | 540 | |
|
541 | captured_errors = {} | |
|
541 | 542 | # TODO: In the event of a newer jupyter notebook version, consider increasing the as_version parameter |
|
542 | notebook = nbformat.reads(source, as_version=4) | |
|
543 | notebook = nbformat.reads(source, as_version=4, capture_validation_error=captured_errors) | |
|
544 | try: | |
|
543 | 545 | (body, resources) = as_html(notebook) |
|
546 | except AttributeError: | |
|
547 | error_messages = '<br>'.join(str(error) for error in captured_errors.values()) | |
|
548 | body = f""" | |
|
549 | <div style="text-align: center;"> | |
|
550 | <h3>Invalid Notebook!</h3> | |
|
551 | <p>{error_messages}</p> | |
|
552 | </div> | |
|
553 | """ | |
|
544 | 554 | return body |
|
545 | 555 | |
|
546 | 556 |
General Comments 0
You need to be logged in to leave comments.
Login now