In [1]:
# this is a test workflow

This is a markdown cell


In [2]:
cat('This is a cell with another kernel')


This is a cell with another kernel

In [3]:
print('This is a scratch cell')


This is a scratch cell

In [ ]:
# this comment will be included but not shown in help message
# because it is for the global
[global]
a = 1
# this comment will become the comment for parameter b
parameter: b=2
parameter: c=3 
# this comment will become the comment for parameter d
parameter: d='d'

In [ ]:
# this comment will not be included in exported workflow
# because it is not immediately before section

# this is a section comment, will be displayed
[default]
print(f'Hello {a}')