diff --git a/src/Constants.cs b/src/Constants.cs index 9628b71..15fcb60 100644 --- a/src/Constants.cs +++ b/src/Constants.cs @@ -30,6 +30,6 @@ namespace Docnet { public class Constants { - public const string Version = "0.8.0"; + public const string Version = "0.8.1"; } } diff --git a/src/MarkdownSharp.cs b/src/MarkdownSharp.cs index 186147f..59cb689 100644 --- a/src/MarkdownSharp.cs +++ b/src/MarkdownSharp.cs @@ -1386,7 +1386,7 @@ namespace Docnet } private static Regex _tabsBlock = new Regex(@"(@tabs)\s*([\s\S]+?)\s(@endtabs)", RegexOptions.Compiled); - private static Regex _tabBlock = new Regex(@"(@tab) (\S+)\s*([\s\S]+?)\s(@end)", RegexOptions.Compiled); + private static Regex _tabBlock = new Regex(@"(@tab)[\t| ]+([\S+| ]+)\n([\s\S]+?)\s(@end)", RegexOptions.Compiled); private string DoTabsBlocks(string text) { _tabIdCounter = 0; diff --git a/src/Properties/AssemblyInfo.cs b/src/Properties/AssemblyInfo.cs index ae08d2b..a7ece98 100644 --- a/src/Properties/AssemblyInfo.cs +++ b/src/Properties/AssemblyInfo.cs @@ -6,11 +6,11 @@ using System.Runtime.InteropServices; // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Docnet")] -[assembly: AssemblyDescription("")] +[assembly: AssemblyDescription("Static Documentation Site Generator")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Docnet")] -[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyCopyright("Copyright ©2016 Frans Bouma")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("0.8.0")] +[assembly: AssemblyFileVersion("0.8.0")]