We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4de99e1 commit 451963eCopy full SHA for 451963e
README.md
@@ -5,3 +5,14 @@
5
[](https://coveralls.io/github/jonathanBieler/GtkMarkdownTextView.jl?branch=master)
6
7
[](http://codecov.io/github/jonathanBieler/GtkMarkdownTextView.jl?branch=master)
8
+
9
+A Widget to display Markdown formatted text:
10
11
+```julia
12
+w = GtkWindow("")
13
14
+md = "# test\n ## test\n*test* test **test**\n - test\n\ttest"
15
+v = MarkdownTextView(md)
16
+push!(w,v)
17
+showall(w)
18
+```
0 commit comments