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
Is there a way to configure nbstripout to strip certain types of output?
A workaround is jq 'del(.cells[] | select(.cell_type=="code") | .outputs[] | select(.name=="stderr"))', but it would be nice to do this sort of thing in nbstripout directly
The text was updated successfully, but these errors were encountered:
I see many different types of output in a single notebook (multiple types for a single cell --- stderr, stdout, error, result etc), and would like control over which are stripped and which are kept, above and beyond the keep_output tag which keeps all outputs if present.
Is there a way to configure nbstripout to strip certain types of output?
A workaround is
jq 'del(.cells[] | select(.cell_type=="code") | .outputs[] | select(.name=="stderr"))'
, but it would be nice to do this sort of thing in nbstripout directlyThe text was updated successfully, but these errors were encountered: