comparison: QScintilla/Exporters/ExporterHTML.py
QScintilla/Exporters/ExporterHTML.py
- branch
- 5_1_x
- changeset 1113
- 95d837803666
- parent 791
- 9ec2ac20e54e
- child 1510
- e75ecf2bd9dd
equal
deleted
inserted
replaced
242 ts = tabSize - (column % tabSize) |
242 ts = tabSize - (column % tabSize) |
243 if wysiwyg: |
243 if wysiwyg: |
244 html += ''' ''' * ts |
244 html += ''' ''' * ts |
245 column += ts |
245 column += ts |
246 else: |
246 else: |
247 if tabs: |
247 if useTabs: |
248 html += '\t' |
248 html += '\t' |
249 column += 1 |
249 column += 1 |
250 else: |
250 else: |
251 html += ' ' * ts |
251 html += ' ' * ts |
252 column += ts |
252 column += ts |