84 @param editor reference to the editor to work on |
84 @param editor reference to the editor to work on |
85 @type Editor |
85 @type Editor |
86 """ |
86 """ |
87 pass |
87 pass |
88 |
88 |
|
89 def hasUnderline(self): |
|
90 """ |
|
91 Public method to indicate the availability of underline markup. |
|
92 |
|
93 @return flag indicating the availability of underline markup |
|
94 @rtype bool |
|
95 """ |
|
96 return False |
|
97 |
|
98 def underline(self, editor): |
|
99 """ |
|
100 Public method to generate underline text. |
|
101 |
|
102 @param editor reference to the editor to work on |
|
103 @type Editor |
|
104 """ |
|
105 pass |
|
106 |
89 def headerLevels(self): |
107 def headerLevels(self): |
90 """ |
108 """ |
91 Public method to determine the available header levels. |
109 Public method to determine the available header levels. |
92 |
110 |
93 @return supported header levels |
111 @return supported header levels |