Skip to content

Commit

Permalink
Actually encode HTML entities
Browse files Browse the repository at this point in the history
Otherwise they're read as HTML tags and "invisible."  Oops.

PiperOrigin-RevId: 154956817
  • Loading branch information
kchodorow authored and damienmg committed May 3, 2017
1 parent f13ce15 commit 148366f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public Metadata getMetadata() {
<pre>
http_archive(
name = "<name>",
urls = ["https://github.com/<user>/<repo>/archive/<commit or tag>.tar.gz"],
urls = ["https://github.com/&lt;user&gt;/&lt;repo&gt;/archive/&lt;commit or tag&gt;.tar.gz"],
)
</pre>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public Metadata getMetadata() {
<pre>
new_http_archive(
name = "<name>",
urls = ["https://github.com/<user>/<repo>/archive/<commit or tag>.tar.gz"],
urls = ["https://github.com/&lt;user&gt;/&lt;repo&gt;/archive/&lt;commit or tag&gt;.tar.gz"],
build_file = "<build file>",
)
</pre>
Expand Down

0 comments on commit 148366f

Please sign in to comment.