Home
last modified time | relevance | path

Searched refs:docstring_linker (Results 1 – 6 of 6) sorted by relevance

/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/epydoc/markup/
H A Dplaintext.py34 def to_html(self, docstring_linker, **options): argument
36 return plaintext_to_html(self.to_plaintext(docstring_linker))
38 return ParsedDocstring.to_html(self, docstring_linker, **options)
40 def to_latex(self, docstring_linker, **options): argument
42 return plaintext_to_latex(self.to_plaintext(docstring_linker))
44 return ParsedDocstring.to_latex(self, docstring_linker, **options)
46 def to_plaintext(self, docstring_linker, **options): argument
H A D__init__.py281 def to_html(self, docstring_linker, **options): argument
294 plaintext = plaintext_to_html(self.to_plaintext(docstring_linker))
297 def to_latex(self, docstring_linker, **options): argument
310 plaintext = plaintext_to_latex(self.to_plaintext(docstring_linker))
313 def to_plaintext(self, docstring_linker, **options): argument
358 def to_html(self, docstring_linker, **options): argument
361 htmlstring += doc.to_html(docstring_linker, **options)
364 def to_latex(self, docstring_linker, **options): argument
367 latexstring += doc.to_latex(docstring_linker, **options)
370 def to_plaintext(self, docstring_linker, **options): argument
[all …]
H A Djavadoc.py164 def to_html(self, docstring_linker, **options): argument
170 translate_xref = docstring_linker.translate_identifier_xref
219 def to_plaintext(self, docstring_linker, **options): argument
H A Drestructuredtext.py192 def to_html(self, docstring_linker, directory=None, argument
195 visitor = _EpydocHTMLTranslator(self._document, docstring_linker,
200 def to_latex(self, docstring_linker, **options): argument
202 visitor = _EpydocLaTeXTranslator(self._document, docstring_linker)
206 def to_plaintext(self, docstring_linker, **options): argument
544 def __init__(self, document, docstring_linker): argument
553 self._linker = docstring_linker
583 def __init__(self, document, docstring_linker, directory, argument
585 self._linker = docstring_linker
H A Depytext.py1776 def to_html(self, docstring_linker, directory=None, docindex=None, argument
1781 self._html = self._to_html(self._tree, docstring_linker, directory,
1785 def to_latex(self, docstring_linker, **options): argument
1790 self._latex = self._to_latex(self._tree, docstring_linker, indent)
1793 def to_plaintext(self, docstring_linker, **options): argument
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/epydoc/docwriter/
H A Ddotgraph.py191 def link(self, docstring_linker): argument
197 self._link_href(self.node_defaults, docstring_linker)
199 self._link_href(node.attribs, docstring_linker)
202 self._link_href(self.edge_defaults, docstring_linker)
204 self._link_href(edge.attribs, docstring_linker)
208 url = docstring_linker.url_for(m.group(1))
214 def _link_href(self, attribs, docstring_linker): argument
219 url = docstring_linker.url_for(m.group(1))