Skip to content

Commit c01d36b

Browse files
committed
Remove XML code fence language hint
Attempting to retain comments in documentation.
1 parent 06d41ff commit c01d36b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

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

Lines changed: 10 additions & 10 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-
```xml
40+
```
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
@@ -66,11 +66,11 @@ If your instance has subdomain isolation enabled:
6666
<enabled>true</enabled>
6767
</snapshots>
6868
</repository>
69-
&lt;!-- EACH package should be separately noted due to a limitation on group/organization
69+
<!-- EACH package should be separately noted due to a limitation on group/organization
7070
level package resolution. This may lead to numerous `repository` definitions that
7171
are different in `REPOSITORY` only.
72-
--&gt;
73-
&lt!-- <repository>
72+
-->
73+
<!-- <repository>
7474
<id>github</id>
7575
<name>GitHub OWNER Apache Maven Packages</name>
7676
<url>https://{% if currentVersion == "free-pro-team@latest" %}maven.pkg.github.com{% else %}maven.HOSTNAME{% endif %}/OWNER/REPOSITORY</url>
@@ -81,7 +81,7 @@ If your instance has subdomain isolation enabled:
8181
<enabled>true</enabled>
8282
</snapshots>
8383
</repository>
84-
--&gt;
84+
-->
8585
</repositories>
8686
</profile>
8787
</profiles>
@@ -99,7 +99,7 @@ If your instance has subdomain isolation enabled:
9999
{% if enterpriseServerVersions contains currentVersion %}
100100
If your instance has subdomain isolation disabled:
101101

102-
```xml
102+
```
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
@@ -128,11 +128,11 @@ If your instance has subdomain isolation disabled:
128128
<enabled>true</enabled>
129129
</snapshots>
130130
</repository>
131-
&lt;!-- EACH package should be separately noted due to a limitation on group/organization
131+
<!-- EACH package should be separately noted due to a limitation on group/organization
132132
level package resolution. This may lead to numerous `repository` definitions that
133133
are different in `REPOSITORY` only.
134-
--&gt;
135-
&lt;!-- <repository>
134+
-->
135+
<!-- <repository>
136136
<id>github</id>
137137
<name>GitHub OWNER Apache Maven Packages</name>
138138
<url>https://maven.pkg.github.com/OWNER/REPOSITORY</url>
@@ -143,7 +143,7 @@ If your instance has subdomain isolation disabled:
143143
<enabled>true</enabled>
144144
</snapshots>
145145
</repository>
146-
--&gt;
146+
-->
147147
</repositories>
148148
</profile>
149149
</profiles>

0 commit comments

Comments
 (0)