Browse Source

FIX for #5

tags/0.8.1
Frans Bouma 10 years ago
parent
commit
13f976cc82
3 changed files with 6 additions and 6 deletions
  1. +1
    -1
      src/Constants.cs
  2. +1
    -1
      src/MarkdownSharp.cs
  3. +4
    -4
      src/Properties/AssemblyInfo.cs

+ 1
- 1
src/Constants.cs View File

@@ -30,6 +30,6 @@ namespace Docnet
{
public class Constants
{
public const string Version = "0.8.0";
public const string Version = "0.8.1";
}
}

+ 1
- 1
src/MarkdownSharp.cs View File

@@ -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;


+ 4
- 4
src/Properties/AssemblyInfo.cs View File

@@ -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")]

Loading…
Cancel
Save