Esempio 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)
Esempio 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)
Esempio n. 3
0
File: html.py Progetto: evhub/sphinx
 def bulk_text_processor(self, text):
     if self.no_smarty <= 0:
         return sphinx_smarty_pants(text)
     return text
Esempio n. 4
0
 def bulk_text_processor(self, text):
     # type: (unicode) -> unicode
     if self.no_smarty <= 0:
         return sphinx_smarty_pants(text)
     return text
Esempio n. 5
0
File: html5.py Progetto: nwf/sphinx
 def bulk_text_processor(self, text):
     # type: (unicode) -> unicode
     if self.no_smarty <= 0:
         return sphinx_smarty_pants(text)
     return text