Skip to content
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

Fix issue where code blocks with language hint would mess up list item depth #465

Merged
merged 12 commits into from
Sep 16, 2020
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ git:
depth: 3
language: go
go:
- 1.9.x # need for App Engine
- 1.11.x # latest release because "master" is dev version
- 1.11.x # need for App Engine
env:
- BAZEL=0.18.1
before_install:
Expand All @@ -15,7 +14,8 @@ before_install:
./install.sh --user
rm -f install.sh
install:
- go get github.com/golang/lint/golint
- export GO111MODULE="on"
- go get golang.org/x/lint/golint
# Install protobuf dependencies
- go get -u github.com/golang/protobuf/protoc-gen-go
- curl -OL https://github.com/google/protobuf/releases/download/v3.7.1/protoc-3.7.1-linux-x86_64.zip
Expand All @@ -39,7 +39,7 @@ deploy:
on:
repo: googlecodelabs/tools
tags: true
go: 1.10.x # match the above; latest release
go: 1.11.x # match the above; latest release
skip_cleanup: true
file:
- claat/bin/claat-darwin-amd64
Expand Down
11 changes: 11 additions & 0 deletions claat/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module github.com/googlecodelabs/tools/claat

go 1.11

require (
github.com/russross/blackfriday/v2 v2.0.2-0.20200714164129-acedacffef10
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/x1ddos/csslex v0.0.0-20160125172232-7894d8ab8bfe
golang.org/x/net v0.0.0-20200904194848-62affa334b73
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
)
Loading