Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Commit

Permalink
Merge pull request #34 from amyschoen/patch-2
Browse files Browse the repository at this point in the history
Fixing rendering
  • Loading branch information
brianamarie authored Feb 6, 2020
2 parents b2f3361 + d40d380 commit 02e583e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions responses/09-add-links.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ Hyperlinks allow people to navigate through pages on the web. Links are achieved

{% if GHE_HOST %}
https://pages.{{ GHE_HOST }}/{{ user.login }}/{{ repo }}
```html
```
<li><a href="https://{{ GHE_HOST }}">This is a link to GitHub!</a></li>
```
{% else %}
```html
```
<li><a href="https://github.com">This is a link to GitHub!</a></li>
```
{% endif %}
Expand All @@ -34,11 +34,11 @@ Apply this suggested change, or follow the instructions below if you'd like to t
1. In the list you just created, add a link to each of your favorite sites to their respective URLs. You can do this by adding an opening anchor tag `<a>` tag with `href` attribute with your favorite site's URL, the name of the site inside the anchor tag, and a closing anchor `</a>` tag. Here is an example of a list item with a link:

{% if GHE_HOST %}
```html
```
<li><a href="https://{{ GHE_HOST }}">This is a link to GitHub!</a></li>
```
{% else %}
```html
```
<li><a href="https://github.com">This is a link to GitHub!</a></li>
```
{% endif %}
Expand All @@ -47,4 +47,4 @@ Apply this suggested change, or follow the instructions below if you'd like to t
2. Click on **Commit changes**.

<hr>
<h3 align="center">I'll respond when I detect you've committed in this pull request.</h3>
<h3 align="center">I'll respond when I detect you've committed in this pull request.</h3>

0 comments on commit 02e583e

Please sign in to comment.