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

small doc fix in nbconvert #4026

Merged
merged 2 commits into from
Aug 15, 2013
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions IPython/nbconvert/transformers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ class Transformer(NbConvertBase):
Any configurable traitlets this class exposed will be configurable in profiles
using c.SubClassName.atribute=value

you can overwrite transform_cell to apply a transformation independently on each cell
or __call__ if you prefer your own logic. See corresponding docstring for informations.
you can overwrite `transform_cell` to apply a transformation independently on each cell
Copy link
Member

Choose a reason for hiding this comment

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

this is rst, not markdown - either use double-backtick or :meth:transform_cell``

or `call` if you prefer your own logic. See corresponding docstring for informations.

Disabled by default and can be enabled via the config by
'c.YourTransformerName.enabled = True'
Expand Down