class documentation

class GithubWikiRenderer(HTMLRenderer): (source)

View In Hierarchy

Undocumented

Method __init__ No summary
Method render_github_wiki Undocumented

Inherited from HTMLRenderer:

Static Method escape_html This method is deprecated. Use html.escape instead.
Static Method escape_url Escape urls to prevent code injection craziness. (Hopefully.)
Static Method render_html_block Undocumented
Static Method render_html_span Undocumented
Static Method render_line_break Undocumented
Static Method render_thematic_break Undocumented
Method __exit__ Make renderer classes into context managers.
Method render_auto_link Undocumented
Method render_block_code Undocumented
Method render_document Undocumented
Method render_emphasis Undocumented
Method render_escape_sequence Undocumented
Method render_heading Undocumented
Method render_image Undocumented
Method render_inline_code Undocumented
Method render_link Undocumented
Method render_list Undocumented
Method render_list_item Undocumented
Method render_paragraph Undocumented
Method render_quote Undocumented
Method render_raw_text Default render method for RawText. Simply return token.content.
Method render_strikethrough Undocumented
Method render_strong Undocumented
Method render_table Undocumented
Method render_table_cell Undocumented
Method render_table_row Undocumented
Method render_to_plain Undocumented
Instance Variable _suppress_ptag_stack Undocumented

Inherited from BaseRenderer (via HTMLRenderer):

Method __enter__ Make renderer classes into context managers.
Method render Grabs the class name from input token and finds its corresponding render function.
Method render_inner Recursively renders child tokens. Joins the rendered strings with no space in between.
Instance Variable footnotes Undocumented
Instance Variable render_map maps tokens to their corresponding render functions.
Class Method _cls_to_func Undocumented
Static Method _tokens_from_module Helper method; takes a module and returns a list of all token classes specified in module.__all__. Useful when custom tokens are defined in a separate module.
Class Variable _parse_name Undocumented
Instance Variable _extras a list of custom tokens to be added to the parsing process.
def __init__(self): (source)
Parameters
*extras:listallows subclasses to add even more custom tokens.
def render_github_wiki(self, token): (source)

Undocumented