(self, m)
| 214 | class HtmlPattern (Pattern): |
| 215 | """ Store raw inline html and return a placeholder. """ |
| 216 | def handleMatch (self, m): |
| 217 | rawhtml = m.group(2) |
| 218 | inline = True |
| 219 | place_holder = self.markdown.htmlStash.store(rawhtml) |
| 220 | return place_holder |
| 221 | |
| 222 | |
| 223 | class LinkPattern (Pattern): |