commit | fb994f42d8394e948c3d58235828e9ed5f2f3077 | [log] [tgz] |
---|---|---|
author | Dmitri Shuralyov <dmitshur@golang.org> | Mon Jul 27 14:44:56 2020 -0400 |
committer | Dmitri Shuralyov <dmitshur@golang.org> | Mon Jul 27 20:33:33 2020 +0000 |
tree | 61d766d5c741877f3de7eff41a7a3aec2f6f390e | |
parent | d59e95f1479737b791e722c8372afe17cc012e9c [diff] |
content: fix code block in Publishing Go Modules article When indentation is used to create a code block immediately following a list, Markdown syntax is ambiguous: it can be interpreted as another text paragraph belonging to the last list entry, or as a standalone code block. The original behavior in CL 197637 made this unambiguously a code block because the present format did not support lists. This changed when the article was converted to use Markdown syntax in CL 222848. Start using a fenced code block instead of indentation to resolve the Markdown ambiguity and restore original behavior. For golang/go#33955. Change-Id: I9537bc72d7a32f90592942591b2688fb2f26c452 Reviewed-on: https://go-review.googlesource.com/c/blog/+/245017 Reviewed-by: Jean de Klerk <deklerk@google.com>
This repository holds the Go Blog server code and content.
The easiest way to install is to run go get -u golang.org/x/blog
. You can also manually git clone the repository to $GOPATH/src/golang.org/x/blog.
To run the blog server locally:
go run . -reload
and then visit http://localhost:8080/ in your browser.
Articles are written in the x/tools/present format. Articles on the blog should have broad interest to the Go community, and are mainly written by Go contributors. We encourage you to share your experiences using Go on your own website, and to share them with the Go community. Hugo is a static site server written in Go that makes it easy to write and share your stories.
This repository uses Gerrit for code changes. To learn how to submit changes to this repository, see https://golang.org/doc/contribute.html.
The main issue tracker for the blog is located at https://github.com/golang/go/issues. Prefix your issue with “x/blog:” in the subject line, so it is easy to find.
To deploy blog.golang.org, run:
GO111MODULE=on gcloud --project=golang-org app deploy --no-promote app.yaml
This will create a new version, which can be viewed within the golang-org GCP project.
Check that the deployed version looks OK (click the version link in GCP).
If all is well, click “Migrate Traffic” to move 100% of the blog.golang.org traffic to the new version.
You're done.