Skip to content

Commit

Permalink
Use pre element to retain comments
Browse files Browse the repository at this point in the history
GitHub Markdown strips comments from code fences. Attempting to retain
comments with explicit HTML element.
  • Loading branch information
timothystone committed Nov 28, 2020
1 parent c01d36b commit f735288
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ If you want to interact with multiple repositories, you can add each repository
If your instance has subdomain isolation enabled:
{% endif %}

```
<pre>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
Expand Down Expand Up @@ -94,12 +94,12 @@ If your instance has subdomain isolation enabled:
</server>
</servers>
</settings>
```
</pre>

{% if enterpriseServerVersions contains currentVersion %}
If your instance has subdomain isolation disabled:

```
<pre>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
Expand Down Expand Up @@ -156,7 +156,7 @@ If your instance has subdomain isolation disabled:
</server>
</servers>
</settings>
```
</pre>
{% endif %}

#### Authenticating with the `GITHUB_TOKEN`
Expand Down

1 comment on commit f735288

@Liverpoolj

This comment was marked as spam.

Please sign in to comment.