open-cogsci/rapunzel

R-style markdown cells are not properly parsed

smathot opened this issue · 0 comments

When executing this script:

# %%
# # Markdown heading
#
# This is a Markdown cell.

print('Hello!')  # This is a code cell that generates the output cell below

# % output
# [1] "Hello!"
# 

The resulting html looks like this:

image

In other words, the Markdown cell is improperly parsed (possibly because empty lines are ignored, but this needs to be verified).