src/eric7/QScintilla/MarkupProviders/HtmlProvider.py

branch
eric7
changeset 10324
168b6f6701c6
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
equal deleted inserted replaced
10323:41974276b558 10324:168b6f6701c6
84 84
85 @param editor reference to the editor to work on 85 @param editor reference to the editor to work on
86 @type Editor 86 @type Editor
87 """ 87 """
88 self.__insertMarkup("del", editor) 88 self.__insertMarkup("del", editor)
89
90 def hasUnderline(self):
91 """
92 Public method to indicate the availability of underline markup.
93
94 @return flag indicating the availability of underline markup
95 @rtype bool
96 """
97 return True
98
99 def underline(self, editor):
100 """
101 Public method to generate underline text.
102
103 @param editor reference to the editor to work on
104 @type Editor
105 """
106 self.__insertMarkup("u", editor)
89 107
90 def headerLevels(self): 108 def headerLevels(self):
91 """ 109 """
92 Public method to determine the available header levels. 110 Public method to determine the available header levels.
93 111

eric ide

mercurial