.mobileconfig: fix formatting

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2019-02-13 14:31:02 +01:00
parent 61f5e017c8
commit fbac282bdc
1 changed files with 44 additions and 44 deletions

View File

@ -27,7 +27,7 @@ A .mobileconfig file is a plist file in XML format. The top-level XML item is a
Here's an example .mobileconfig with the above fields filled in:
~~~
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
@ -48,7 +48,7 @@ Here's an example .mobileconfig with the above fields filled in:
</array>
</dict>
</plist>
~~~
```
### WireGuard payload entries
@ -93,9 +93,9 @@ keys:
Here's an example WireGuard configuration payload dictionary:
~~~
<!-- A WireGuard configuration payload dictionary -->
<dict>
```xml
<!-- A WireGuard configuration payload dictionary -->
<dict>
<key>PayloadDisplayName</key>
<string>VPN</string>
<key>PayloadType</key>
@ -134,8 +134,8 @@ Here's an example WireGuard configuration payload dictionary:
<key>AuthenticationMethod</key>
<string>Password</string>
</dict>
</dict>
~~~
</dict>
```
### Caveats