-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move github_flavored_markdown to its own repo. #19
Comments
Thanks for opening this issue. I will work on resolving it. |
The reason it takes one minute to
http://godoc.org/github.com/shurcooL/go/github_flavored_markdown?imports They are:
However, if you look at the entire dependency tree, https://godoc.org/github.com/shurcooL/go/github_flavored_markdown?import-graph&hide=2 It becomes clear that the https://godoc.org/github.com/sourcegraph/syntaxhighlight?import-graph&hide=1 vs. https://godoc.org/github.com/sourcegraph/annotate?import-graph&hide=1
So simply factoring I see two options. Since I will think about it more and decide on the best way to improve this situation. |
Hey @Renstrom, Now that sourcegraph/syntaxhighlight#15 has been resolved, go getting |
That's great news, thanks for doing this. |
Ok, I've moved See ae0de68.
You can and should start using new import path right now. I'll leave the old import path for Time to go get with completely empty GOPATH workspace is a little faster (not a whole lot), but the number of folders is less if you don't need anything else from my
Hope that helps! |
It has moved out into a standalone repo. See shurcooL/go#19 for rationale.
It has moved out into a standalone repo recently. See shurcooL/go#19 for rationale.
It has moved to a new import path at github.com/shurcooL/github_flavored_markdown in a separate repo. See #19 (comment) for rationale.
I briefly mentioned this in #18. My main reason for this is when vendoring (or just
go get
) it will pull in all of shurcooL/go and all of its dependencies, which is a lot of code (~600 000 lines all in all):It takes around 1 minute to
go get
.The text was updated successfully, but these errors were encountered: