(self, title, link=None)
| 119 | self.end_bold() |
| 120 | |
| 121 | def ref(self, title, link=None): |
| 122 | if link is None: |
| 123 | link = title |
| 124 | self.doc.write(':doc:`%s <%s>`' % (title, link)) |
| 125 | |
| 126 | def _heading(self, s, border_char): |
| 127 | border = border_char * len(s) |