Skip to content

Commit

Permalink
Don't escape social usernames expecting + or /
Browse files Browse the repository at this point in the history
  • Loading branch information
ashawley committed Jan 14, 2018
1 parent d4a29a3 commit 55527bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _includes/social.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
{% if site.linkedin_username %}<li><a href="https://www.linkedin.com/in/{{ site.linkedin_username | cgi_escape | escape }}"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg"><use xlink:href="/assets/icons.svg#linkedin"></use></svg> <span class="username">{{ site.linkedin_username | escape }}</span></a></li>{% endif %}
{% if site.pinterest_username %}<li><a href="https://www.pinterest.com/{{ site.pinterest_username | cgi_escape | escape }}"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg"><use xlink:href="/assets/icons.svg#pinterest"></use></svg> <span class="username">{{ site.pinterest_username | escape }}</span></a></li>{% endif %}
{% if site.twitter_username %}<li><a href="https://www.twitter.com/{{ site.twitter_username | cgi_escape | escape }}"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg"><use xlink:href="/assets/icons.svg#twitter"></use></svg> <span class="username">{{ site.twitter_username | escape }}</span></a></li>{% endif %}
{% if site.stackoverflow_username %}<li><a href="https://stackoverflow.com/users/{{ site.stackoverflow_username | cgi_escape | escape }}"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg"><use xlink:href="/assets/icons.svg#stackoverflow"></use></svg> <span class="username">{{ site.stackoverflow_username | escape }}</span></a></li>{% endif %}
{% if site.stackoverflow_username %}<li><a href="https://stackoverflow.com/users/{{ site.stackoverflow_username | escape }}"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg"><use xlink:href="/assets/icons.svg#stackoverflow"></use></svg> <span class="username">{{ site.stackoverflow_username | escape }}</span></a></li>{% endif %}
{% if site.youtube_username %}<li><a href="https://youtube.com/{{ site.youtube_username | cgi_escape | escape }}"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg"><use xlink:href="/assets/icons.svg#youtube"></use></svg> <span class="username">{{ site.youtube_username | escape }}</span></a></li>{% endif %}
{% if site.googleplus_username %}<li><a href="https://plus.google.com/{{ site.googleplus_username | cgi_escape | escape }}"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg"><use xlink:href="/assets/icons.svg#googleplus"></use></svg> <span class="username">{{ site.googleplus_username | escape }}</span></a></li>{% endif %}
{% if site.googleplus_username %}<li><a href="https://plus.google.com/{{ site.googleplus_username | escape }}"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg"><use xlink:href="/assets/icons.svg#googleplus"></use></svg> <span class="username">{{ site.googleplus_username | escape }}</span></a></li>{% endif %}
{% if site.rss %}<li><a href="{{ site.baseurl }}/feed.xml"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg"><use xlink:href="/assets/icons.svg#rss"></use></svg> <span>{{ site.rss | escape }}</span></a></li>{% endif %}
</ul>

0 comments on commit 55527bc

Please sign in to comment.