This commit inlines https://github.com/tj/go-termd for a few reasons: - off the shelf it relies on a broken, erroneously released version of blackfriday (a markdown parser) - based on discussion with ampinsk, there are some tweaks we'd like to make to markdown rendering beyond what the library exposes now - it's a small library (around 300 sloc) This commit only: - messes with go.mod to fix the blackfriday issues - adds an inclusion note - renames the package
26 lines
968 B
Modula-2
26 lines
968 B
Modula-2
module github.com/github/gh-cli
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/AlecAivazis/survey/v2 v2.0.4
|
|
github.com/alecthomas/chroma v0.6.8
|
|
github.com/aybabtme/rgbterm v0.0.0-20170906152045-cc83f3b3ce59
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
|
|
github.com/hashicorp/go-version v1.2.0
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
|
|
github.com/kr/text v0.1.0
|
|
github.com/mattn/go-colorable v0.1.2
|
|
github.com/mattn/go-isatty v0.0.9
|
|
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/mitchellh/go-wordwrap v1.0.0
|
|
github.com/pkg/errors v0.8.1
|
|
github.com/russross/blackfriday/v2 v2.0.1
|
|
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
|
|
github.com/spf13/cobra v0.0.5
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/tj/go-css v0.0.0-20191108133013-220a796d1705
|
|
golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5
|
|
gopkg.in/yaml.v3 v3.0.0-20191010095647-fc94e3f71652
|
|
)
|