I'd like to make the XML documentation for my functions more readible. Is there a line feed capability for that? This is an example off the web. I'd like to single space the item list.

''' <summary>
'''<para>Non-HTML files like Adobe Acrobat PDF files and Word
'''documents are stored with their original URLs partially
'''encoded in their filenames. This function will return the
'''original URL of the file.</para>
'''<para>The encoding done by the Index Server Companion removes
'''characters that cannot be present in Windows filenames
'''(these are: \/:*?"<>|). The decoding performed is:</para>
''' <list type="table">
''' <listheader><term>Find</term><description>Replace</description></listheader>
''' <item><term>^f</term><description>\</description></item>
''' <item><term>^b</term><description>/</description></item>
''' <item><term>^c</term><description>:</description></item>
''' <item><term>^s</term><description>*</description></item>
''' <item><term>^q</term><description>?</description></item>
''' <item><term>^d</term><description>\</description></item>
''' <item><term>^l</term><description><</description></item>
''' <item><term>^g</term><description>></description></item>
''' <item><term>^p</term><description>|</description></item>
''' </list>
''' </summary>
''' <param name="FileName">The document's original filename.</param>
''' <returns>Decoded filename</returns>
''' <exception cref="System.Exception">Throws an exception when something goes wrong.</exception>