1. I want to copy xml code from a text editor and paste it into Flare while preserving the indents. Flare is taking my text and left justifying it all. For example:
This is what I copy from a text editor:
Code: Select all
<?xml version ="1.0"?>
<msg>
<head>
<RoundTripInfo>64 bytes of transaction information</ RoundTripInfo >
</head>
<body>
<HostIdentifier>
<SiteIdent>00000000811000000000</SiteIdent>
</HostIdentifier>
<AddSubscriber>
<BSSubscriberKey>1234567890123456</BSSubscriberKey>
</AddSubscriber>
</body>
</msg> Code: Select all
<?xml version ="1.0"?>
<msg>
<head>
<RoundTripInfo>64 bytes of transaction information</ RoundTripInfo >
</head>
<body>
<HostIdentifier>
<SiteIdent>00000000811000000000</SiteIdent>
</HostIdentifier>
<AddSubscriber>
<BSSubscriberKey>1234567890123456</BSSubscriberKey>
</AddSubscriber>
</body>
</msg> 2. The default tab space for <pre> is too large. When I manually add a tab space into the style to reformat it closer to original, the tab is twice as deep as the original code. How do I set the tab space in a style?
Thanks for any help!