diff options
author | Dmitri Shuralyov <dmitshur@golang.org> | 2020-05-04 04:11:21 +0000 |
---|---|---|
committer | Dmitri Shuralyov <dmitshur@golang.org> | 2020-05-05 14:59:22 +0000 |
commit | 10cc6f575bc85cafbda92aa7030a8e5c6e486dfe (patch) | |
tree | b299447142b2c138a523a85d0fe805a002c68127 | |
parent | 53027eb99b1ab4809594a81a0e30cb7fa2d17fa8 (diff) |
content/constants: fix display of two backquote characters
Two backquote characters were expressed as 6 consecutive backquotes in
the legacy article format. That unusual sequence didn't translate well
into the new Markdown article format in CL 222848.
Replace it with simple HTML, since this is hard to express in Markdown.
For golang/go#33955.
Change-Id: I575aa89c9f9104de694d9a8dad4ca103cc4c1567
Reviewed-on: https://go-review.googlesource.com/c/blog/+/231817
Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Andrew Bonventre <andybons@golang.org>
-rw-r--r-- | content/constants.article | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/constants.article b/content/constants.article index 23e77fc..51308d6 100644 --- a/content/constants.article +++ b/content/constants.article @@ -92,7 +92,7 @@ String constants are easy to understand and provide a smaller space in which to explore the type issues of constants in Go. A string constant encloses some text between double quotes. -(Go also has raw string literals, enclosed by backquotes ````````, +(Go also has raw string literals, enclosed by backquotes <code>``</code>, but for the purpose of this discussion they have all the same properties.) Here is a string constant: |