nngogol / PySimpleGUIDocGen

Software for making documentation for PySimpleGUI
9 stars 2 forks source link

Call signature for functions with no parms and no return value shows word "python" #42

Closed MikeTheWatchGuy closed 5 years ago

MikeTheWatchGuy commented 5 years ago

Here is my original code:

    def GrabAnyWhereOn(self):
        """
        Turns on Grab Anywhere functionality AFTER a window has been created.  Don't try on a window that's not yet
        been Finalized or Read.
        """
        self.TKroot.bind("<ButtonPress-1>", self._StartMove)
        self.TKroot.bind("<ButtonRelease-1>", self._StopMove)
        self.TKroot.bind("<B1-Motion>", self._OnMotion)

    def GrabAnyWhereOff(self):
        """
        Turns off Grab Anywhere functionality AFTER a window has been created.  Don't try on a window that's not yet
        been Finalized or Read.
        """
        self.TKroot.unbind("<ButtonPress-1>")
        self.TKroot.unbind("<ButtonRelease-1>")
        self.TKroot.unbind("<B1-Motion>")

It comes out looking like this: image

It appears that only one ` is being put into the readme:

image

MikeTheWatchGuy commented 5 years ago

BTW, I hand edited the readme.md file and it looks great once I fixed this error!

I used Regex to do it. .... match ^`python yadda yadda

nngogol commented 5 years ago

Fixed in last version, Mike!