コード例 #1
0
ファイル: rst.py プロジェクト: satra/nbconvert
    def render_pyout(self, output):
        lines = ['Out[%s]:' % self._get_prompt_number(output), '']

        # output is a dictionary like object with type as a key
        if 'latex' in output:
            lines.extend(rst_directive('.. math::', output.latex))

        if 'text' in output:
            lines.extend(rst_directive('.. parsed-literal::', output.text))

        return lines
コード例 #2
0
ファイル: rst.py プロジェクト: patonelli/nbconvert
    def render_pyout(self, output):
        lines = ["Out[%s]:" % self._get_prompt_number(output), ""]

        # output is a dictionary like object with type as a key
        if "latex" in output:
            lines.extend(rst_directive(".. math::", output.latex))

        if "text" in output:
            lines.extend(rst_directive(".. parsed-literal::", output.text))

        return lines
コード例 #3
0
ファイル: rst.py プロジェクト: dkua/nbconvert
    def render_pyout(self, output):
        lines = ['Out[%s]:' % output.prompt_number, '']

        # output is a dictionary like object with type as a key
        if 'latex' in output:
            lines.extend(rst_directive('.. math::', output.latex))

        if 'text' in output:
            lines.extend(rst_directive('.. parsed-literal::', output.text))

        return lines
コード例 #4
0
ファイル: rst.py プロジェクト: dkua/nbconvert
    def render_code(self, cell):
        if not cell.input:
            return []

        lines = ['In[%s]:' % cell.prompt_number, '']
        lines.extend(rst_directive('.. code:: python', cell.input))

        for output in cell.outputs:
            conv_fn = self.dispatch(output.output_type)
            lines.extend(conv_fn(output))

        return lines
コード例 #5
0
ファイル: rst.py プロジェクト: satra/nbconvert
    def render_code(self, cell):
        # Note: cell has type 'IPython.nbformat.v3.nbbase.NotebookNode'
        if not cell.input:
            return []

        lines = ['In[%s]:' % self._get_prompt_number(cell), '']
        lines.extend(rst_directive('.. code:: python', cell.input))

        for output in cell.outputs:
            conv_fn = self.dispatch(output.output_type)
            lines.extend(conv_fn(output))

        return lines
コード例 #6
0
ファイル: rst.py プロジェクト: patonelli/nbconvert
    def render_code(self, cell):
        # Note: cell has type 'IPython.nbformat.v3.nbbase.NotebookNode'
        if not cell.input:
            return []

        lines = ["In[%s]:" % self._get_prompt_number(cell), ""]
        lines.extend(rst_directive(".. code:: python", cell.input))

        for output in cell.outputs:
            conv_fn = self.dispatch(output.output_type)
            lines.extend(conv_fn(output))

        return lines
コード例 #7
0
ファイル: rst.py プロジェクト: patonelli/nbconvert
 def render_display_format_javascript(self, output):
     return rst_directive(".. raw:: javascript", output.javascript)
コード例 #8
0
ファイル: rst.py プロジェクト: patonelli/nbconvert
 def render_display_format_json(self, output):
     return rst_directive(".. raw:: json", output.json)
コード例 #9
0
ファイル: rst.py プロジェクト: patonelli/nbconvert
 def render_display_format_latex(self, output):
     return rst_directive(".. math::", output.latex)
コード例 #10
0
ファイル: rst.py プロジェクト: patonelli/nbconvert
 def render_display_format_html(self, output):
     return rst_directive(".. raw:: html", output.html)
コード例 #11
0
ファイル: rst.py プロジェクト: patonelli/nbconvert
 def _unknown_lines(self, data):
     return rst_directive(".. warning:: Unknown cell") + [data]
コード例 #12
0
ファイル: rst.py プロジェクト: patonelli/nbconvert
 def render_display_format_text(self, output):
     return rst_directive(".. parsed-literal::", output.text)
コード例 #13
0
ファイル: rst.py プロジェクト: satra/nbconvert
 def render_display_format_text(self, output):
     return rst_directive('.. parsed-literal::', output.text)
コード例 #14
0
ファイル: rst.py プロジェクト: satra/nbconvert
 def _unknown_lines(self, data):
     return rst_directive('.. warning:: Unknown cell') + [data]
コード例 #15
0
ファイル: rst.py プロジェクト: satra/nbconvert
 def render_display_format_html(self, output):
     return rst_directive('.. raw:: html', output.html)
コード例 #16
0
ファイル: rst.py プロジェクト: satra/nbconvert
 def render_display_format_javascript(self, output):
     return rst_directive('.. raw:: javascript', output.javascript)
コード例 #17
0
ファイル: rst.py プロジェクト: satra/nbconvert
 def render_display_format_json(self, output):
     return rst_directive('.. raw:: json', output.json)
コード例 #18
0
ファイル: rst.py プロジェクト: satra/nbconvert
 def render_display_format_latex(self, output):
     return rst_directive('.. math::', output.latex)