Skip to content

Commit

Permalink
Percent representation for frozen cells #101
Browse files Browse the repository at this point in the history
  • Loading branch information
mwouts committed Oct 18, 2018
1 parent 729e6af commit 8eb6f87
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions tests/notebooks/mirror/ipynb_to_percent/frozen_cell_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# ---
# jupyter:
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# language_info:
# codemirror_mode:
# name: ipython
# version: 3
# file_extension: .py
# mimetype: text/x-python
# name: python
# nbconvert_exporter: python
# pygments_lexer: ipython3
# version: 3.7.0
# ---

# %% {"ExecuteTime": {"end_time": "2018-10-17T10:31:56.160823Z", "start_time": "2018-10-17T10:31:56.157308Z"}}
# This is an unfrozen cell. Works as usual.
print("I'm a regular cell so I run and print!")

# %% {"deletable": false, "editable": false, "run_control": {"frozen": true}}
# # This is an frozen cell
# print("I'm frozen so Im not executed :(")

0 comments on commit 8eb6f87

Please sign in to comment.