78 |
78 |
79 def encodedNewLines(self, text): |
79 def encodedNewLines(self, text): |
80 """ |
80 """ |
81 Public method to encode newlines and paragraph breaks. |
81 Public method to encode newlines and paragraph breaks. |
82 |
82 |
83 @param text text to encode (string or QString) |
83 @param text text to encode (string) |
84 """ |
84 """ |
85 return text.replace("\n\n", self.NEWPARA).replace("\n", self.NEWLINE) |
85 return text.replace("\n\n", self.NEWPARA).replace("\n", self.NEWLINE) |
86 |
86 |
87 def _writeBasics(self, pyobject, indent = 0): |
87 def _writeBasics(self, pyobject, indent = 0): |
88 """ |
88 """ |