From e4b987c106b497410097322b937ed1a0f44655f2 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Fri, 11 Nov 2016 23:40:27 +0100 Subject: [PATCH] drvesx.html.in: Kill useless spaces in

The 
 section is rendered as-is on the page. That is, if all
the lines are prefixed with 4 spaces the rendered page will also
have them. Problem is if we put a box around such 
 because
the content might not fix into it.

Signed-off-by: Michal Privoznik 
---
 docs/drvesx.html.in | 44 ++++++++++++++++++++++----------------------
 1 file changed, 22 insertions(+), 22 deletions(-)

diff --git a/docs/drvesx.html.in b/docs/drvesx.html.in
index d1e67d0467..5ba7bc1217 100644
--- a/docs/drvesx.html.in
+++ b/docs/drvesx.html.in
@@ -467,14 +467,14 @@ ethernet0.checkMACAddress = "false"
         Here a domain XML snippet:
     

-    ...
-    <disk type='file' device='disk'>
-      <source file='[local-storage] Fedora11/Fedora11.vmdk'/>
-      <target dev='sda' bus='scsi'/>
-      <address type='drive' controller='0' bus='0' unit='0'/>
-    </disk>
-    <controller type='scsi' index='0' model='lsilogic'/>
-    ...
+...
+<disk type='file' device='disk'>
+  <source file='[local-storage] Fedora11/Fedora11.vmdk'/>
+  <target dev='sda' bus='scsi'/>
+  <address type='drive' controller='0' bus='0' unit='0'/>
+</disk>
+<controller type='scsi' index='0' model='lsilogic'/>
+...
 

The controller element is supported since 0.8.2. @@ -482,13 +482,13 @@ ethernet0.checkMACAddress = "false" specify the SCSI controller model. This attribute usage is deprecated now.

-    ...
-    <disk type='file' device='disk'>
-      <driver name='lsilogic'/>
-      <source file='[local-storage] Fedora11/Fedora11.vmdk'/>
-      <target dev='sda' bus='scsi'/>
-    </disk>
-    ...
+...
+<disk type='file' device='disk'>
+  <driver name='lsilogic'/>
+  <source file='[local-storage] Fedora11/Fedora11.vmdk'/>
+  <target dev='sda' bus='scsi'/>
+</disk>
+...
 
@@ -513,13 +513,13 @@ ethernet0.checkMACAddress = "false" Here a domain XML snippet:

-    ...
-    <interface type='bridge'>
-      <mac address='00:50:56:25:48:c7'/>
-      <source bridge='VM Network'/>
-      <model type='e1000'/>
-    </interface>
-    ...
+...
+<interface type='bridge'>
+  <mac address='00:50:56:25:48:c7'/>
+  <source bridge='VM Network'/>
+  <model type='e1000'/>
+</interface>
+...
 
-- GitLab