예제 #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
 def render_pyerr(self, output):
     return cell_to_lines(output)
예제 #7
0
 def render_raw(self, cell):
     return cell_to_lines(cell)
예제 #8
0
 def render_markdown(self, cell):
     return cell_to_lines(cell)
예제 #9
0
 def render_code(self, cell):
     return cell_to_lines(cell)
예제 #10
0
 def render_heading(self, cell):
     return cell_to_lines(cell)