-
-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
157 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,7 @@ User Guide | |
|
||
guide | ||
cli | ||
renderers | ||
plugins | ||
directives | ||
advanced | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
Renderers | ||
========= | ||
|
||
|
||
Customize HTMLRenderer | ||
---------------------- | ||
|
||
You can customize HTML output with your own renderers. Create a subclass | ||
of ``mistune.HTMLRenderer``:: | ||
|
||
|
||
class MyRenderer(mistune.HTMLRenderer): | ||
def codespan(self, text): | ||
if text.startswith('$') and text.endswith('$'): | ||
return '<span class="math">' + escape(text) + '</span>' | ||
return '<code>' + escape(text) + '</code>' | ||
|
||
# use customized renderer | ||
markdown = mistune.create_markdown(renderer=MyRenderer()) | ||
print(markdown('hi `$a^2=4$`')) | ||
|
||
Here is a a list of available renderer functions:: | ||
|
||
# inline level | ||
text(self, text) | ||
link(self, text, url, title=None) | ||
image(self, alt, url, title=None) | ||
emphasis(self, text) | ||
strong(self, text) | ||
codespan(self, text) | ||
linebreak(self) | ||
softbreak(self) | ||
inline_html(self, html) | ||
|
||
# block level | ||
paragraph(self, text) | ||
heading(self, text, level, **attrs) | ||
blank_line(self) | ||
thematic_break(self) | ||
block_text(self, text) | ||
block_code(self, code, info=None) | ||
block_quote(self, text) | ||
block_html(self, html) | ||
block_error(self, html) | ||
list(self, text, ordered, **attrs) | ||
list_item(self, text, **attrs) | ||
|
||
# provided by strikethrough plugin | ||
strikethrough(self, text) | ||
|
||
# provided by mark plugin | ||
mark(self, text) | ||
|
||
# provided by insert plugin | ||
insert(self, text) | ||
|
||
# provided by subscript plugin | ||
subscript(self, text) | ||
|
||
# provided by abbr plugin | ||
abbr(self, text, title) | ||
|
||
# provided by ruby plugin | ||
ruby(self, text, rt) | ||
|
||
# provided by task_lists plugin | ||
task_list_item(self, text, checked=False, **attrs) | ||
|
||
# provide by table plugin | ||
table(self, text) | ||
table_head(self, text) | ||
table_body(self, text) | ||
table_row(self, text) | ||
table_cell(self, text, align=None, head=False) | ||
|
||
# provided by footnotes plugin | ||
footnote_ref(self, key, index) | ||
footnotes(self, text) | ||
footnote_item(self, text, key, index) | ||
|
||
# provide by def_list plugin | ||
def_list(self, text) | ||
def_list_head(self, text) | ||
def_list_item(self, text) | ||
|
||
# provide by math plugin | ||
block_math(self, text) | ||
inline_math(self, text) | ||
|
||
|
||
RestructuredText Renderer | ||
------------------------- | ||
|
||
|
||
Markdown Renderer | ||
----------------- |