Skip to content

Commit

Permalink
Fix docstring formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
hreikin committed Apr 3, 2022
1 parent 92c1c56 commit ea42749
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tkintermd/tkintermd_frame.py
Expand Up @@ -189,13 +189,13 @@ def popup(self, event):
Provides the following options:
- Cut
- Copy
- Paste
- Undo
- Redo
- Find
- Select All
- Cut
- Copy
- Paste
- Undo
- Redo
- Find
- Select All
"""
self.right_click.tk_popup(event.x_root, event.y_root)

Expand Down Expand Up @@ -289,11 +289,11 @@ def on_input_change(self, event):
When the user types:
- Get the current text area contents
- Convert the markdown formatted string to HTML
- Load the HTML string and apply CSS styling to the HTML frame.
- Check the markdown and apply formatting to the text area
- Reset the modified flag
- Get the current text area contents
- Convert the markdown formatted string to HTML
- Load the HTML string and apply CSS styling to the HTML frame.
- Check the markdown and apply formatting to the text area
- Reset the modified flag
"""
md2html = Markdown()
markdownText = self.text_area.get("1.0", END)
Expand Down

0 comments on commit ea42749

Please sign in to comment.