Skip to content

Commit 451963e

Browse files
updated README
1 parent 4de99e1 commit 451963e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,14 @@
55
[![Coverage Status](https://coveralls.io/repos/jonathanBieler/GtkMarkdownTextView.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/jonathanBieler/GtkMarkdownTextView.jl?branch=master)
66

77
[![codecov.io](http://codecov.io/github/jonathanBieler/GtkMarkdownTextView.jl/coverage.svg?branch=master)](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

Comments
 (0)