Fixed and closed #389: switching from Visual to WikiMarkup no longer adds a blank line after a list.

This commit is contained in:
Dario Solera 2009-10-20 15:53:17 +00:00
parent a68203ed54
commit 3100569339
2 changed files with 3 additions and 3 deletions

View file

@ -16,5 +16,5 @@ using System.Reflection;
// //
// You can specify all the values or you can default the Revision and Build Numbers // You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
[assembly: AssemblyVersion("3.0.1.406")] [assembly: AssemblyVersion("3.0.1.407")]
[assembly: AssemblyFileVersion("3.0.1.406")] [assembly: AssemblyFileVersion("3.0.1.407")]

View file

@ -681,7 +681,7 @@ namespace ScrewTurn.Wiki {
string wikiMarkup = BuildListWikiMarkup(list, ""); string wikiMarkup = BuildListWikiMarkup(list, "");
return wikiMarkup; return wikiMarkup.TrimEnd('\r', '\n');
} }
/// <summary> /// <summary>