--- a/QScintilla/MarkupProviders/MarkupBase.py Sun Jan 08 18:51:55 2017 +0100 +++ b/QScintilla/MarkupProviders/MarkupBase.py Sun Jan 08 18:52:16 2017 +0100 @@ -178,4 +178,39 @@ @type Editor """ pass - + + def hasQuote(self): + """ + Public method to indicate the availability of block quote markup. + + @return flag indicating the availability of block quote markup + @rtype bool + """ + return False + + def quote(self, editor): + """ + Public method to generate block quote text. + + @param editor reference to the editor to work on + @type Editor + """ + pass + + def hasImage(self): + """ + Public method to indicate the availability of image markup. + + @return flag indicating the availability of image markup + @rtype bool + """ + return False + + def image(self, editor): + """ + Public method to generate image text. + + @param editor reference to the editor to work on + @type Editor + """ + pass