- Sep 26, 2024
-
-
Francisco Vilmar Cardoso Ruviaro authored
-
- Sep 15, 2024
-
-
Francisco Vilmar Cardoso Ruviaro authored
(Closes: #1081882)
-
Francisco Vilmar Cardoso Ruviaro authored
-
- May 31, 2017
-
-
Quinn Slack authored
Use 'master' instead of 'tip' for Travis config
-
Igor Afanasyev authored
-
Quinn Slack authored
Add an ability to produce an `<ol>...</ol>`-wrapped list to display line numbers
-
- May 30, 2017
-
-
Igor Afanasyev authored
Reason: `go vet` is no longer go-get-able and is available as a standard tool since Go 1.6. I think it should be fine to drop Go 1.4 from test targets for this reason.
-
Igor Afanasyev authored
-
Igor Afanasyev authored
This gives an ability to show highlighted source with line numbers.
-
- Oct 17, 2016
-
-
Quinn Slack authored
Update README.md
-
luisantonioig authored
Adding installation steps
-
- May 12, 2015
-
-
Gabriel Aszalos authored
Remove NilAnnotator from syntaxhighlight
-
gbbr authored
-
gbbr authored
-
- May 11, 2015
-
-
Dmitri Shuralyov authored
Add a more direct NewScannerReader func.
-
Dmitri Shuralyov authored
If the user has an io.Reader, they can now use NewScannerReader to more directly create a Scanner. Previously, they would be forced to either read all bytes from the reader into a byte slice and use that (which then indirectly gets wrapped by a bytes.NewReader), or copy this func in their code. Resolves #14.
-
- May 06, 2015
-
-
Dmitri Shuralyov authored
Make paragraph line breaks more consistent. Most Markdown editors use word wrap by default, so there's no need for manual line breaks.
-
- Apr 28, 2015
-
-
Dmitri Shuralyov authored
Upstream API has recently changed vcsclient.FileWithRange.StartByte type from int to int64, hence the casts are needed now. Fixes Travis build error.
-
- Apr 19, 2015
-
-
Dmitri Shuralyov authored
Add NilAnnotator.
-
- Apr 18, 2015
-
-
Dmitri Shuralyov authored
Is there no way to do this better than hardcoding all paths except testdata?
-
Dmitri Shuralyov authored
Add vet. Use -race when testing.
-
gbbr authored
NilAnnotator is a special kind of annotator that always returns nil, but stores within itself the snippet of source code that is passed through it as tokens. This functionality is useful when one wishes to obtain the tokenized source as a data structure, as opposed to an annotated string, allowing full control over rendering and displaying it.
-
- Apr 09, 2015
-
-
Dmitri Shuralyov authored
Run gofmt -s which simplifies struct definitions.
-
- Feb 26, 2015
-
-
Hari haran authored
-
- Jan 17, 2015
-
-
Quinn Slack authored
Implement GoStringer interface for Kind type.
-
Dmitri Shuralyov authored
This defines the Go syntax for the Kind const values. They look like syntaxhighlight.Keyword, etc., and are used when printing with %#v verb. go generate is used to generate the GoString() method for Kind type.
-
- Dec 24, 2014
-
-
Quinn Slack authored
Apply API improvements, unexport unneeded symbol.
-
Dmitri Shuralyov authored
API improvements as described in #6. Unexport keywords map as it's not expected to be used by clients and is not documented. This makes the packages API slightly smaller and easier to use. Closes #6.
-
- Dec 11, 2014
-
-
Quinn Slack authored
Fix tests and example.
-
- Dec 10, 2014
-
-
Dmitri Shuralyov authored
Update testdata/underscore.go.html to match expected output after input change in b4219f1f. Fix example verification to occur (see http://godoc.org/testing#hdr-Examples), and update expected output to match actual output. Copy latest version of example_test.go into README so they are in sync.
-
- Oct 28, 2014
-
-
Quinn Slack authored
-
Quinn Slack authored
This reverts commit 6b343fc2.
-
- Oct 27, 2014
-
-
Beyang Liu authored
This reverts commit 08889d1e.
-
- Oct 25, 2014
-
-
Quinn Slack authored
Try to fix Travis.
-
Dmitri Shuralyov authored
Okay, it turns out the issue was a missing dependency. Using make obscured the actual error, which is one reason to avoid using it.
-
Dmitri Shuralyov authored
I'm guessing that trying to write to benchmark.txt inside travis is likely creating the error due to permissions. Any file changes inside Travis will be lost anyway, so there's no point in doing that. Instead, I just opted to execute the test and benchmarks and show their output in Travis. Also make sure the Go code is gofmted.
-
Quinn Slack authored
Use a better return type for Annotate.
-
Dmitri Shuralyov authored
-
- Jul 19, 2014
-
-
Beyang Liu authored
-