(chunk)
| 4599 | |
| 4600 | @staticmethod |
| 4601 | def process_inline(chunk): |
| 4602 | if chunk[0] == '!': return '_str(%s)' % chunk[1:] |
| 4603 | return '_escape(%s)' % chunk |
| 4604 | |
| 4605 | def write_code(self, line, comment=''): |
| 4606 | code = ' ' * (self.indent + self.indent_mod) |