176 |
176 |
177 @param editor reference to the editor to work on |
177 @param editor reference to the editor to work on |
178 @type Editor |
178 @type Editor |
179 """ |
179 """ |
180 pass |
180 pass |
181 |
181 |
|
182 def hasQuote(self): |
|
183 """ |
|
184 Public method to indicate the availability of block quote markup. |
|
185 |
|
186 @return flag indicating the availability of block quote markup |
|
187 @rtype bool |
|
188 """ |
|
189 return False |
|
190 |
|
191 def quote(self, editor): |
|
192 """ |
|
193 Public method to generate block quote text. |
|
194 |
|
195 @param editor reference to the editor to work on |
|
196 @type Editor |
|
197 """ |
|
198 pass |
|
199 |
|
200 def hasImage(self): |
|
201 """ |
|
202 Public method to indicate the availability of image markup. |
|
203 |
|
204 @return flag indicating the availability of image markup |
|
205 @rtype bool |
|
206 """ |
|
207 return False |
|
208 |
|
209 def image(self, editor): |
|
210 """ |
|
211 Public method to generate image text. |
|
212 |
|
213 @param editor reference to the editor to work on |
|
214 @type Editor |
|
215 """ |
|
216 pass |