51 Public method to get the converted CSS3 text. |
51 Public method to get the converted CSS3 text. |
52 |
52 |
53 @return CSS3 text (string) |
53 @return CSS3 text (string) |
54 """ |
54 """ |
55 dlg = Html5ToCss3ConverterParameterDialog() |
55 dlg = Html5ToCss3ConverterParameterDialog() |
56 if dlg.exec_() == QDialog.Accepted: |
56 if dlg.exec() == QDialog.Accepted: |
57 indentation, placeholders = dlg.getData() |
57 indentation, placeholders = dlg.getData() |
58 |
58 |
59 self.__createSoup() |
59 self.__createSoup() |
60 |
60 |
61 alreadyDone = list(self.TagsToIgnore) |
61 alreadyDone = list(self.TagsToIgnore) |