JupyterFormat

struct defined in module Pollen


			JupyterFormat() <: Format

Format for reading in Jupyter notebook (.ipynb) files.

Extended help

Markdown cells are parsed as :md Nodes using MarkdownFormat. Parsd code cells have the following structure:


			
			
			

	
			Node
			(
			
			:
			codecell
			,
			
    
			

	
			Node
			(
			
			:
			codeblock
			,
			 
			_
			)
			,
			   
			# source code
			
    
			

	
			Node
			(
			
			:
			codeoutput
			,
			 
			_
			)
			,
			  
			# printed output
			
    
			

	
			Node
			(
			
			:
			coderesult
			,
			 
			_
			)
			,
			  
			# return value of cell
			

			)
Methods

There is 1 method for Pollen.JupyterFormat: