Skip to content

Commit d41c452

Browse files
committed
Remove italics from XML examples in Reference Manual
1 parent 4f61978 commit d41c452

File tree

3 files changed

+27
-14
lines changed

3 files changed

+27
-14
lines changed

src/docs/asciidoc/core/core-appendix.adoc

+12-6
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@ correct schema so that the tags in the `util` namespace are available to you):
2828
<?xml version="1.0" encoding="UTF-8"?>
2929
<beans xmlns="http://www.springframework.org/schema/beans"
3030
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
31-
__xmlns:util="http://www.springframework.org/schema/util"__ xsi:schemaLocation="
31+
xmlns:util="http://www.springframework.org/schema/util"
32+
xsi:schemaLocation="
3233
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
33-
__http://www.springframework.org/schema/util https://www.springframework.org/schema/util/spring-util.xsd"__>
34+
http://www.springframework.org/schema/util https://www.springframework.org/schema/util/spring-util.xsd">
3435
3536
<!-- bean definitions here -->
37+
3638
</beans>
3739
----
3840

@@ -517,11 +519,13 @@ are available to you):
517519
<?xml version="1.0" encoding="UTF-8"?>
518520
<beans xmlns="http://www.springframework.org/schema/beans"
519521
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
520-
__xmlns:aop="http://www.springframework.org/schema/aop"__ xsi:schemaLocation="
522+
xmlns:aop="http://www.springframework.org/schema/aop"
523+
xsi:schemaLocation="
521524
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
522-
__http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd"__>
525+
http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd">
523526
524527
<!-- bean definitions here -->
528+
525529
</beans>
526530
----
527531

@@ -542,11 +546,13 @@ available to you:
542546
<?xml version="1.0" encoding="UTF-8"?>
543547
<beans xmlns="http://www.springframework.org/schema/beans"
544548
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
545-
__xmlns:context="http://www.springframework.org/schema/context"__ xsi:schemaLocation="
549+
xmlns:context="http://www.springframework.org/schema/context"
550+
xsi:schemaLocation="
546551
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
547-
__http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd"__>
552+
http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">
548553
549554
<!-- bean definitions here -->
555+
550556
</beans>
551557
----
552558

src/docs/asciidoc/integration-appendix.adoc

+12-6
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ correct schema so that the elements in the `jee` namespace are available to you:
2626
<?xml version="1.0" encoding="UTF-8"?>
2727
<beans xmlns="http://www.springframework.org/schema/beans"
2828
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
29-
__xmlns:jee="http://www.springframework.org/schema/jee"__ xsi:schemaLocation="
29+
xmlns:jee="http://www.springframework.org/schema/jee"
30+
xsi:schemaLocation="
3031
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
31-
__http://www.springframework.org/schema/jee https://www.springframework.org/schema/jee/spring-jee.xsd"__>
32+
http://www.springframework.org/schema/jee https://www.springframework.org/schema/jee/spring-jee.xsd">
3233
3334
<!-- bean definitions here -->
35+
3436
</beans>
3537
----
3638

@@ -299,11 +301,13 @@ are available to you:
299301
<?xml version="1.0" encoding="UTF-8"?>
300302
<beans xmlns="http://www.springframework.org/schema/beans"
301303
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
302-
__xmlns:jms="http://www.springframework.org/schema/jms"__ xsi:schemaLocation="
304+
xmlns:jms="http://www.springframework.org/schema/jms"
305+
xsi:schemaLocation="
303306
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
304-
__http://www.springframework.org/schema/jms https://www.springframework.org/schema/jms/spring-jms.xsd"__>
307+
http://www.springframework.org/schema/jms https://www.springframework.org/schema/jms/spring-jms.xsd">
305308
306309
<!-- bean definitions here -->
310+
307311
</beans>
308312
----
309313

@@ -335,10 +339,12 @@ the correct schema so that the elements in the `cache` namespace are available t
335339
<?xml version="1.0" encoding="UTF-8"?>
336340
<beans xmlns="http://www.springframework.org/schema/beans"
337341
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
338-
__xmlns:cache="http://www.springframework.org/schema/cache"__ xsi:schemaLocation="
342+
xmlns:cache="http://www.springframework.org/schema/cache"
343+
xsi:schemaLocation="
339344
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
340-
__http://www.springframework.org/schema/cache https://www.springframework.org/schema/cache/spring-cache.xsd"__>
345+
http://www.springframework.org/schema/cache https://www.springframework.org/schema/cache/spring-cache.xsd">
341346
342347
<!-- bean definitions here -->
348+
343349
</beans>
344350
----

src/docs/asciidoc/languages/dynamic-languages.adoc

+3-2
Original file line numberDiff line numberDiff line change
@@ -856,9 +856,10 @@ the correct schema so that the tags in the `lang` namespace are available to you
856856
<?xml version="1.0" encoding="UTF-8"?>
857857
<beans xmlns="http://www.springframework.org/schema/beans"
858858
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
859-
__xmlns:lang="http://www.springframework.org/schema/lang"__ xsi:schemaLocation="
859+
xmlns:lang="http://www.springframework.org/schema/lang"
860+
xsi:schemaLocation="
860861
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
861-
__http://www.springframework.org/schema/lang https://www.springframework.org/schema/lang/spring-lang.xsd"__>
862+
http://www.springframework.org/schema/lang https://www.springframework.org/schema/lang/spring-lang.xsd">
862863
863864
<!-- bean definitions here -->
864865

0 commit comments

Comments
 (0)