diff -r aeaa6bf49831 -r 0b38ab887b0d src/eric7/QScintilla/MarkupProviders/HtmlProvider.py --- a/src/eric7/QScintilla/MarkupProviders/HtmlProvider.py Tue Nov 08 19:47:11 2022 +0100 +++ b/src/eric7/QScintilla/MarkupProviders/HtmlProvider.py Wed Nov 09 08:53:26 2022 +0100 @@ -405,3 +405,13 @@ editor.insertAt(markup, cline + 1, 0) editor.setCursorPosition(cline + 2, 6) editor.endUndoAction() + + +def createProvider(): + """ + Function to instantiate a markup provider object. + + @return reference to the instantiated markup provider opject + @rtype HtmlProvider + """ + return HtmlProvider()