| 160 | |
| 161 | |
| 162 | class Styler: |
| 163 | def style_title(self, text): |
| 164 | return text |
| 165 | |
| 166 | def style_header_column(self, text): |
| 167 | return text |
| 168 | |
| 169 | def style_row_element(self, text): |
| 170 | return text |
| 171 | |
| 172 | def style_indentation_char(self, text): |
| 173 | return text |
| 174 | |
| 175 | |
| 176 | class ColorizedStyler(Styler): |