Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't remove empty cells by default #784

Merged
merged 1 commit into from
Aug 29, 2018

Conversation

mgeier
Copy link
Contributor

@mgeier mgeier commented Mar 21, 2018

Since there was no real response to #720, I thought I'll try it with a pull request ...

This PR restores the sane behavior of not removing stuff without the user wanting to remove stuff.

It also fixes the docstring so if people actually want to remove stuff, they can learn how to do that.

@mgeier
Copy link
Contributor Author

mgeier commented Apr 25, 2018

Ping?

1 similar comment
@mgeier
Copy link
Contributor Author

mgeier commented May 30, 2018

Ping?

Copy link
Contributor

@tillahoffmann tillahoffmann left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm happy to merge this to have more canonical default behaviour.


> jupyter nbconvert --RegexRemovePreprocessor.enabled=True \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The default value for the enabled flag appears to be False. We should either override the default value for the RegexRemovePreprocessor or keep the --RegexRemovePreprocessor.enabled=True flag. Or is a preprocessor enabled automatically if one of its attributes (patterns) is set?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tillahoffmann Thanks for the review!

I'm not quite sure, but I think the preprocessor is enabled by default because of this:

@property
def default_config(self):
c = Config({
'RegexRemovePreprocessor': {
'enabled': True
},
'TagRemovePreprocessor': {
'enabled': True
}
})

I don't care if it is enabled or not, as long as it doesn't remove stuff by default.

modify the patterns traitlet. For example, execute the following command
to convert a notebook to html and remove cells containing only whitespace:
to convert a notebook to html and remove cells containing only whitespace::
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Small typo of an extra : here.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The first command line argument enables the preprocessor and the second
sets the list of patterns to '\\s*\\Z' which matches an arbitrary number
The command line argument
sets the list of patterns to ``'\\s*\\Z'`` which matches an arbitrary number
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are single back ticks sufficient here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried it, and apparently not.

Sphinx allows to customize the formatting of single backticks, but it is apparently not configured for typewriter text (and I also don't think it would be a good idea to do so).

@mgeier
Copy link
Contributor Author

mgeier commented Aug 28, 2018

@tillahoffmann Is there anything else you need me to do?

@tillahoffmann
Copy link
Contributor

Happy for this PR to be merged. As an aside, thank you for the detailed Sphinx explanation.

@blink1073
Copy link
Member

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants