Make a link to source file.
(self, url, path)
| 726 | return '<a href="%s">%s</a>' % (url, text) |
| 727 | |
| 728 | def filelink(self, url, path): |
| 729 | """Make a link to source file.""" |
| 730 | return '<a href="file:%s">%s</a>' % (url, path) |
| 731 | |
| 732 | def markup(self, text, escape=None, funcs={}, classes={}, methods={}): |
| 733 | """Mark up some plain text, given a context of symbols to look for. |