Ejemplo n.º 1
0
 def visit_Text(self, node):
     text = node.astext()
     encoded = self.encode(text)
     if self.in_mailto and self.settings.cloak_email_addresses:
         encoded = self.cloak_email(encoded)
     elif self.no_smarty <= 0:
         encoded = sphinx_smarty_pants(encoded)
     self.body.append(encoded)
Ejemplo n.º 2
0
 def visit_Text(self, node):
     text = node.astext()
     encoded = self.encode(text)
     if self.in_mailto and self.settings.cloak_email_addresses:
         encoded = self.cloak_email(encoded)
     elif self.no_smarty <= 0:
         encoded = sphinx_smarty_pants(encoded)
     self.body.append(encoded)
Ejemplo n.º 3
0
Archivo: html.py Proyecto: evhub/sphinx
 def bulk_text_processor(self, text):
     if self.no_smarty <= 0:
         return sphinx_smarty_pants(text)
     return text
Ejemplo n.º 4
0
 def bulk_text_processor(self, text):
     # type: (unicode) -> unicode
     if self.no_smarty <= 0:
         return sphinx_smarty_pants(text)
     return text
Ejemplo n.º 5
0
Archivo: html5.py Proyecto: nwf/sphinx
 def bulk_text_processor(self, text):
     # type: (unicode) -> unicode
     if self.no_smarty <= 0:
         return sphinx_smarty_pants(text)
     return text