示例#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)
示例#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)
示例#3
0
文件: html.py 项目: evhub/sphinx
 def bulk_text_processor(self, text):
     if self.no_smarty <= 0:
         return sphinx_smarty_pants(text)
     return text
示例#4
0
 def bulk_text_processor(self, text):
     # type: (unicode) -> unicode
     if self.no_smarty <= 0:
         return sphinx_smarty_pants(text)
     return text
示例#5
0
文件: html5.py 项目: nwf/sphinx
 def bulk_text_processor(self, text):
     # type: (unicode) -> unicode
     if self.no_smarty <= 0:
         return sphinx_smarty_pants(text)
     return text