Skip to content

Commit b840f48

Browse files
committed
Fix some formatting in config files article
1 parent de05c05 commit b840f48

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

umbraco-cloud/getting-started/baselines/configuration-files.md

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ When you need a specific configuration on Child projects, you should always use
2828

2929
Here is a few examples of what could be transformed in the child sites.
3030

31-
## Adding or updating appsettings (i.e. child-appsettings.web.live.xdt.config)
31+
## Adding or updating appsettings
32+
33+
{% code title="child-appsettings.web.live.xdt.config" %}
3234

3335
```xml
3436
<?xml version="1.0" encoding="utf-8"?>
@@ -45,7 +47,11 @@ Here is a few examples of what could be transformed in the child sites.
4547
</configuration>
4648
```
4749

48-
## Setting the SMTP settings for the child project (i.e. child-smtpsettings.web.live.xdt.config)
50+
{% endcode %}
51+
52+
## Setting the Simple Mail Transfer Protocol (SMTP) settings for the child project
53+
54+
{% code title="child-smtpsettings.web.live.xdt.config" %}
4955

5056
```xml
5157
<?xml version="1.0" encoding="utf-8"?>
@@ -61,7 +67,11 @@ Here is a few examples of what could be transformed in the child sites.
6167
</configuration>
6268
```
6369

64-
## Setting custom rewrite rules for the child project (i.e. child-iisrewrite.web.live.xdt.config)
70+
{% endcode %}
71+
72+
## Setting custom rewrite rules for the child project
73+
74+
{% code title="child-iisrewrite.web.live.xdt.config" %}
6575

6676
```xml
6777
<?xml version="1.0" encoding="utf-8"?>
@@ -86,12 +96,14 @@ Here is a few examples of what could be transformed in the child sites.
8696
</configuration>
8797
```
8898

89-
The above could either be added to its config files or be split up into one config file per setting. Umbraco Cloud will run through all the config files for the project. i.e. in one file
99+
{% endcode %}
100+
101+
The above could either be added to its config files or be split up into one config file per setting. Umbraco Cloud will run through all the config files for the project.
90102

91-
* child.web.live.xdt.config
103+
* `child.web.live.xdt.config`
92104

93105
or having multiple files
94106

95-
* child-appsettings.web.live.xdt.config
96-
* child-iisrewrite.web.live.xdt.config
97-
* child-smtpsettings.web.live.xdt.config
107+
* `child-appsettings.web.live.xdt.config`
108+
* `child-iisrewrite.web.live.xdt.config`
109+
* `child-smtpsettings.web.live.xdt.config`

0 commit comments

Comments
 (0)