55 """ |
55 """ |
56 dlg = Html5ToCss3ConverterParameterDialog() |
56 dlg = Html5ToCss3ConverterParameterDialog() |
57 if dlg.exec_() == QDialog.Accepted: |
57 if dlg.exec_() == QDialog.Accepted: |
58 indentation, placeholders = dlg.getData() |
58 indentation, placeholders = dlg.getData() |
59 |
59 |
60 # TODO: implement this |
|
61 self.__createSoup() |
60 self.__createSoup() |
62 |
61 |
63 alreadyDone = list(self.TagsToIgnore) |
62 alreadyDone = list(self.TagsToIgnore) |
64 |
63 |
65 css = '@charset "utf-8";{0}'.format(os.linesep) |
64 css = '@charset "utf-8";{0}'.format(os.linesep) |