File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -778,13 +778,13 @@ brew install mark
778778### Go Install / Go Get
779779
780780``` bash
781- go install github.com/kovetskiy/mark/cmd/mark@latest
781+ go install github.com/kovetskiy/mark/v16/ cmd/mark@latest
782782```
783783
784784For older versions
785785
786786``` bash
787- go get -v github.com/kovetskiy/mark/cmd/mark
787+ go get -v github.com/kovetskiy/mark/v16/ cmd/mark
788788```
789789
790790### Releases
@@ -818,7 +818,7 @@ USAGE:
818818 mark [global options]
819819
820820VERSION:
821- v15.2 .0@1c82927c11a2999a39e5052aae6d2c65a201260c
821+ v15.5 .0@9a26f657c7f2d708ae53722cad03b048c72c9db2
822822
823823DESCRIPTION:
824824 Mark is a tool to update Atlassian Confluence pages from markdown. Documentation is available here: https://github.com/kovetskiy/mark
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ import (
1616 "strconv"
1717 "strings"
1818
19- "github.com/kovetskiy/mark/confluence"
20- "github.com/kovetskiy/mark/vfs"
19+ "github.com/kovetskiy/mark/v16/ confluence"
20+ "github.com/kovetskiy/mark/v16/ vfs"
2121 "github.com/reconquest/karma-go"
2222 "github.com/reconquest/pkg/log"
2323)
Original file line number Diff line number Diff line change 55 "fmt"
66 "os"
77
8- "github.com/kovetskiy/mark/util"
8+ "github.com/kovetskiy/mark/v16/ util"
99 "github.com/reconquest/pkg/log"
1010 "github.com/urfave/cli/v3"
1111)
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
1313 "github.com/chromedp/cdproto/dom"
1414 "github.com/chromedp/chromedp"
1515
16- "github.com/kovetskiy/mark/attachment"
16+ "github.com/kovetskiy/mark/v16/ attachment"
1717 "github.com/reconquest/pkg/log"
1818
1919 "oss.terrastruct.com/d2/d2graph"
Original file line number Diff line number Diff line change 55 "strconv"
66 "testing"
77
8- "github.com/kovetskiy/mark/attachment"
8+ "github.com/kovetskiy/mark/v16/ attachment"
99 "github.com/stretchr/testify/assert"
1010)
1111
Original file line number Diff line number Diff line change 1- module github.com/kovetskiy/mark
1+ module github.com/kovetskiy/mark/v16
22
33go 1.25.0
44
Original file line number Diff line number Diff line change 77 "strings"
88 "text/template"
99
10- "github.com/kovetskiy/mark/includes"
10+ "github.com/kovetskiy/mark/v16/ includes"
1111 "github.com/reconquest/karma-go"
1212 "github.com/reconquest/pkg/log"
1313 "github.com/reconquest/regexputil-go"
Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ import (
1414 "time"
1515
1616 "github.com/bmatcuk/doublestar/v4"
17- "github.com/kovetskiy/mark/attachment"
18- "github.com/kovetskiy/mark/confluence"
19- "github.com/kovetskiy/mark/includes"
20- "github.com/kovetskiy/mark/macro"
21- markmd "github.com/kovetskiy/mark/markdown"
22- "github.com/kovetskiy/mark/metadata"
23- "github.com/kovetskiy/mark/page"
24- "github.com/kovetskiy/mark/stdlib"
25- "github.com/kovetskiy/mark/types"
26- "github.com/kovetskiy/mark/vfs"
17+ "github.com/kovetskiy/mark/v16/ attachment"
18+ "github.com/kovetskiy/mark/v16/ confluence"
19+ "github.com/kovetskiy/mark/v16/ includes"
20+ "github.com/kovetskiy/mark/v16/ macro"
21+ markmd "github.com/kovetskiy/mark/v16/ markdown"
22+ "github.com/kovetskiy/mark/v16/ metadata"
23+ "github.com/kovetskiy/mark/v16/ page"
24+ "github.com/kovetskiy/mark/v16/ stdlib"
25+ "github.com/kovetskiy/mark/v16/ types"
26+ "github.com/kovetskiy/mark/v16/ vfs"
2727 "github.com/reconquest/karma-go"
2828 "github.com/reconquest/pkg/log"
2929)
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ import (
44 "bytes"
55 "slices"
66
7- "github.com/kovetskiy/mark/attachment"
8- cparser "github.com/kovetskiy/mark/parser"
9- crenderer "github.com/kovetskiy/mark/renderer"
10- "github.com/kovetskiy/mark/stdlib"
11- "github.com/kovetskiy/mark/types"
7+ "github.com/kovetskiy/mark/v16/ attachment"
8+ cparser "github.com/kovetskiy/mark/v16/ parser"
9+ crenderer "github.com/kovetskiy/mark/v16/ renderer"
10+ "github.com/kovetskiy/mark/v16/ stdlib"
11+ "github.com/kovetskiy/mark/v16/ types"
1212 "github.com/reconquest/pkg/log"
1313 mkDocsParser "github.com/stefanfritsch/goldmark-admonitions"
1414 "github.com/yuin/goldmark"
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ import (
1010 "strings"
1111 "testing"
1212
13- mark "github.com/kovetskiy/mark/markdown"
14- "github.com/kovetskiy/mark/stdlib"
15- "github.com/kovetskiy/mark/types"
16- "github.com/kovetskiy/mark/util"
13+ mark "github.com/kovetskiy/mark/v16/ markdown"
14+ "github.com/kovetskiy/mark/v16/ stdlib"
15+ "github.com/kovetskiy/mark/v16/ types"
16+ "github.com/kovetskiy/mark/v16/ util"
1717 "github.com/stretchr/testify/assert"
1818 "github.com/urfave/cli/v3"
1919)
You can’t perform that action at this time.
0 commit comments