Example #1
0
 def visit_paragraph(self, node):
     if self.first_paragraph_as_text is None:
         # just paragraphs at the root of the document should be used.
         # warnings, blockquotes and similar aren't good descriptions.
         if node.parent.tagname.strip() == 'document':
             self.first_paragraph_as_text = \
                 ' '.join([i.strip() \
                           for i in node.astext().splitlines(False)])
     HTMLTranslator.visit_paragraph(self, node)
Example #2
0
 def visit_paragraph(self, node):
     if self.first_paragraph_as_text is None:
         # just paragraphs at the root of the document should be used.
         # warnings, blockquotes and similar aren't good descriptions.
         if node.parent.tagname.strip() == 'document':
             self.first_paragraph_as_text = \
                 ' '.join([i.strip() \
                           for i in node.astext().splitlines(False)])
     HTMLTranslator.visit_paragraph(self, node)