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

comment typo fix #1425

Merged
merged 2 commits into from
Sep 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions share/jupyter/nbconvert/templates/base/null.j2
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ To layout the different blocks of a notebook.

Subtemplates can override blocks to define their custom representation.

If one of the block you do overwrite is not a leave block, consider
If one of the block you do overwrite is not a leaf block, consider
calling super.

{%- block nonLeaveBlock -%}
{%- block nonLeafBlock -%}
#add stuff at beginning
{{ super() }}
#add stuff at end
{%- endblock nonLeaveBlock -%}
{%- endblock nonLeafBlock -%}

consider calling super even if it is a leave block, we might insert more blocks later.
consider calling super even if it is a leaf block, we might insert more blocks later.

#}
{%- block header -%}
Expand Down
8 changes: 4 additions & 4 deletions share/jupyter/nbconvert/templates/latex/null.j2
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ To layout the different blocks of a notebook.

Subtemplates can override blocks to define their custom representation.

If one of the block you do overwrite is not a leave block, consider
If one of the block you do overwrite is not a leaf block, consider
calling super.

((*- block nonLeaveBlock -*))
((*- block nonLeafBlock -*))
#add stuff at beginning
((( super() )))
#add stuff at end
((*- endblock nonLeaveBlock -*))
((*- endblock nonLeafBlock -*))

consider calling super even if it is a leave block, we might insert more blocks later.
consider calling super even if it is a leaf block, we might insert more blocks later.

=))
((*- block header -*))
Expand Down