(self)
| 1839 | |
| 1840 | @property |
| 1841 | def content(self): |
| 1842 | # ArticleSection.string, minus the title. |
| 1843 | s = self.plaintext() |
| 1844 | if s == self.title or s.startswith(self.title+"\n"): |
| 1845 | return s[len(self.title):].lstrip() |
| 1846 | return s |
| 1847 | |
| 1848 | @property |
| 1849 | def tables(self): |