You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert

9
9
@@ -12,7 +12,7 @@ Convert HTML into Markdown with Go. It is using an [HTML Parser](https://github.
12
12
## Installation
13
13
14
14
```
15
-
go get github.com/JohannesKaufmann/html-to-markdown
15
+
go get github.com/tomkosm/html-to-markdown
16
16
```
17
17
18
18
## Usage
@@ -22,7 +22,7 @@ import (
22
22
"fmt"
23
23
"log"
24
24
25
-
md "github.com/JohannesKaufmann/html-to-markdown"
25
+
md "github.com/tomkosm/html-to-markdown"
26
26
)
27
27
28
28
converter:= md.NewConverter("", true, nil)
@@ -60,7 +60,7 @@ opt := &md.Options{
60
60
converter:= md.NewConverter("", true, opt)
61
61
```
62
62
63
-
For all the possible options look at [godocs](https://godoc.org/github.com/JohannesKaufmann/html-to-markdown/#Options) and for a example look at the [example](/examples/options/main.go).
63
+
For all the possible options look at [godocs](https://godoc.org/github.com/tomkosm/html-to-markdown/#Options) and for a example look at the [example](/examples/options/main.go).
64
64
65
65
## Adding Rules
66
66
@@ -88,7 +88,7 @@ For more information have a look at the example [add_rules](/examples/add_rules/
88
88
If you want plugins (github flavored markdown like striketrough, tables, ...) you can pass it to `Use`.
0 commit comments