Fixing illegal character caught by validator.w3.org
The error shown was: Error: Illegal character in query: | is not allowed. Even though Google says here: https://developers.google.com/fonts/docs/getting_started that multiple font families should be separated by pipe character, they state here: https://developers.google.com/maps/documentation/urls/url-encoding that a pipe character should be encoded as %7C which agrees with https://www.ietf.org/rfc/rfc3986.txt.
This commit is contained in:
parent
0f0ea7e824
commit
cf1b3e85cd
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if USE_GOOGLE_FONTS != False %}
|
{% if USE_GOOGLE_FONTS != False %}
|
||||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro%7CSource+Sans+Pro:300,400,400i,700" rel="stylesheet">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if USE_LESS %}
|
{% if USE_LESS %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue