Skip to content

Commit f735288

Browse files
committed
Use pre element to retain comments
GitHub Markdown strips comments from code fences. Attempting to retain comments with explicit HTML element.
1 parent c01d36b commit f735288

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/packages/using-github-packages-with-your-projects-ecosystem/configuring-apache-maven-for-use-with-github-packages.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you want to interact with multiple repositories, you can add each repository
3737
If your instance has subdomain isolation enabled:
3838
{% endif %}
3939

40-
```
40+
<pre>
4141
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
4242
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4343
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
@@ -94,12 +94,12 @@ If your instance has subdomain isolation enabled:
9494
</server>
9595
</servers>
9696
</settings>
97-
```
97+
</pre>
9898

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

102-
```
102+
<pre>
103103
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
104104
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
105105
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
@@ -156,7 +156,7 @@ If your instance has subdomain isolation disabled:
156156
</server>
157157
</servers>
158158
</settings>
159-
```
159+
</pre>
160160
{% endif %}
161161

162162
#### Authenticating with the `GITHUB_TOKEN`

0 commit comments

Comments
 (0)