Created
October 12, 2011 14:50
-
-
Save lyhcode/1281418 to your computer and use it in GitHub Desktop.
Patch sphinx/writers/html.py for Chinese letters and spaces look feel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def visit_Text(self, node): | |
text = node.astext().replace("\n", '') | |
encoded = self.encode(text) | |
if self.protect_literal_text: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment