Skip to content

Commit

Permalink
Fix broken docs build due to non-ASCII character
Browse files Browse the repository at this point in the history
Seen in GCB:

```
Step #2:   Conversion error: Jekyll::Converters::Scss encountered an error while converting 'css/main.scss':
Step #2:                     Invalid US-ASCII character "\xC2" on line 68
Step #2: jekyll 3.8.7 | Error:  Invalid US-ASCII character "\xC2" on line 68
```

This should fix it.

Closes bazelbuild#12187.

PiperOrigin-RevId: 335005755
  • Loading branch information
philwo authored and copybara-github committed Oct 2, 2020
1 parent 7598bc6 commit dde11d6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions site/_sass/be.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@charset "utf-8";

// Build Encyclopedia and Starlark Library

pre.rule-signature {
Expand Down Expand Up @@ -65,7 +67,7 @@ ul.hlist li {
}

ul.hlist li:after {
content: " · ";
content: ' · ';
margin: 0 1ex;
font-weight: bold;
}
Expand Down Expand Up @@ -104,7 +106,7 @@ $toc-color: #757575;

// Command-line Reference
dt {
margin-top: .5em;
margin-top: 0.5em;
}

dd {
Expand Down

0 comments on commit dde11d6

Please sign in to comment.