コード例 #1
0
ファイル: notebook.py プロジェクト: satra/nbconvert
 def render_pyerr(self, output):
     return cell_to_lines(output)
コード例 #2
0
ファイル: notebook.py プロジェクト: satra/nbconvert
 def render_markdown(self, cell):
     return cell_to_lines(cell)
コード例 #3
0
ファイル: notebook.py プロジェクト: satra/nbconvert
 def render_raw(self, cell):
     return cell_to_lines(cell)
コード例 #4
0
ファイル: notebook.py プロジェクト: satra/nbconvert
 def render_heading(self, cell):
     return cell_to_lines(cell)
コード例 #5
0
ファイル: notebook.py プロジェクト: satra/nbconvert
 def render_code(self, cell):
     return cell_to_lines(cell)
コード例 #6
0
ファイル: notebook.py プロジェクト: patonelli/nbconvert
 def render_pyerr(self, output):
     return cell_to_lines(output)
コード例 #7
0
ファイル: notebook.py プロジェクト: patonelli/nbconvert
 def render_raw(self, cell):
     return cell_to_lines(cell)
コード例 #8
0
ファイル: notebook.py プロジェクト: patonelli/nbconvert
 def render_markdown(self, cell):
     return cell_to_lines(cell)
コード例 #9
0
ファイル: notebook.py プロジェクト: patonelli/nbconvert
 def render_code(self, cell):
     return cell_to_lines(cell)
コード例 #10
0
ファイル: notebook.py プロジェクト: patonelli/nbconvert
 def render_heading(self, cell):
     return cell_to_lines(cell)