File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 33
33
<h3 align =" center " >tkintermd</h3 >
34
34
35
35
<p align =" center " >
36
- An embeddable tkinter based Markdown editor with HTML preview.
36
+ A Markdown editor with HTML preview for use in tkinter projects .
37
37
<br />
38
38
<a href="https://hreikin.github.io/tkintermd"><strong>Explore the docs »</strong></a>
39
39
<br />
93
93
94
94
<!-- [![Product Name Screen Shot][product-screenshot]](https://example.com) -->
95
95
96
- An embeddable ` tkinter ` based Markdown editor with HTML preview. The editor has
96
+ A Markdown editor with HTML preview for use in tkinter projects . The editor has
97
97
syntax highlighting provided by ` Pygments ` and the HTML preview window is
98
98
provided by ` tkinterweb ` .
99
99
@@ -156,16 +156,16 @@ Alternatively you can install from source by following the steps below:
156
156
157
157
#### Embedded
158
158
159
- To use the ` TkinterMDFrame ` in one of your own python scripts:
159
+ To use the ` TkintermdFrame ` in one of your own python scripts:
160
160
161
161
``` python
162
- from tkintermd.tkintermd_frame import TkinterMDFrame
162
+ from tkintermd.tkintermd_frame import TkintermdFrame
163
163
164
164
import tkinter as tk
165
165
from tkinter.constants import *
166
166
167
167
root = tk.Tk()
168
- app = TkinterMDFrame (root)
168
+ app = TkintermdFrame (root)
169
169
app.pack(fill = " both" , expand = 1 )
170
170
app.mainloop()
171
171
```
Original file line number Diff line number Diff line change @@ -45,16 +45,16 @@ Alternatively you can install from source by following the steps below:
45
45
46
46
### Embedded
47
47
48
- To use the ` TkinterMDFrame ` in one of your own python scripts:
48
+ To use the ` TkintermdFrame ` in one of your own python scripts:
49
49
50
50
``` python
51
- from tkintermd.tkintermd_frame import TkinterMDFrame
51
+ from tkintermd.frame import TkintermdFrame
52
52
53
53
import tkinter as tk
54
54
from tkinter.constants import *
55
55
56
56
root = tk.Tk()
57
- app = TkinterMDFrame (root)
57
+ app = TkintermdFrame (root)
58
58
app.pack(fill = " both" , expand = 1 )
59
59
app.mainloop()
60
60
```
Original file line number Diff line number Diff line change 7
7
## ` tkintermd `
8
8
9
9
- [ Constants] ( ./tkintermd-constants.md )
10
- - [ TkinterMDFrame ] ( ./tkintermd-frame.md )
10
+ - [ TkintermdFrame ] ( ./tkintermd-frame.md )
11
11
- [ Lexer] ( tkintermd-lexer.md )
Original file line number Diff line number Diff line change 1
1
---
2
- title : TkinterMDFrame
2
+ title : TkintermdFrame
3
3
summary : API reference for the TkinterMDFrame.
4
4
authors :
5
5
- hreikin
You can’t perform that action at this time.
0 commit comments