--- a/src/eric7/QScintilla/MarkupProviders/MarkupBase.py Sat Nov 18 15:22:35 2023 +0100 +++ b/src/eric7/QScintilla/MarkupProviders/MarkupBase.py Sat Nov 18 17:51:18 2023 +0100 @@ -86,6 +86,24 @@ """ pass + def hasUnderline(self): + """ + Public method to indicate the availability of underline markup. + + @return flag indicating the availability of underline markup + @rtype bool + """ + return False + + def underline(self, editor): + """ + Public method to generate underline text. + + @param editor reference to the editor to work on + @type Editor + """ + pass + def headerLevels(self): """ Public method to determine the available header levels.