Create and return an XML node. @param content: The content for which proccessing has been suspended. @type content: L{Object} @return: An element. @rtype: L{Element}
(self, content)
| 80 | pass |
| 81 | |
| 82 | def node(self, content): |
| 83 | """ |
| 84 | Create and return an XML node. |
| 85 | @param content: The content for which proccessing has been suspended. |
| 86 | @type content: L{Object} |
| 87 | @return: An element. |
| 88 | @rtype: L{Element} |
| 89 | """ |
| 90 | return Element(content.tag) |
| 91 | |
| 92 | def start(self, content): |
| 93 | """ |