Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<appSettings>
             <add key="PreserveStrings" value="True"/>
             <add key="RemoveExtraDataMarkers" value="True"/>

             <add key="EnableNextFields" value="True"/>
             <add key="UpdateIfFields" value="True"/>
             <add key="PreserveFields" value="True"/>
             <add key="UnlinkIfFields" value="True"/>
             <add key="LineBreaksToParagraphs" value="True" />
     <appSettings>

Put the code before the closing of the configuration tag, as in the image below. Make sure not to place it inside any other tag. If web.config already contains an appSettings section, add the keys to the existing section. Do not create another appSettings section.

...