diff --git a/src/DocNet/Properties/AssemblyInfo.cs b/src/DocNet/Properties/AssemblyInfo.cs index 36ab847..af2b808 100644 --- a/src/DocNet/Properties/AssemblyInfo.cs +++ b/src/DocNet/Properties/AssemblyInfo.cs @@ -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("0.9.1.0")] -[assembly: AssemblyFileVersion("0.9.1")] +[assembly: AssemblyVersion("0.9.2.0")] +[assembly: AssemblyFileVersion("0.9.2")] diff --git a/src/MarkdownDeep/Block.cs b/src/MarkdownDeep/Block.cs index 7b500ff..e56b98f 100644 --- a/src/MarkdownDeep/Block.cs +++ b/src/MarkdownDeep/Block.cs @@ -499,6 +499,7 @@ namespace MarkdownDeep } string title = string.Empty; string faIconName = string.Empty; + string alertTypeClass = alertType; switch(alertType) { case "danger": @@ -509,6 +510,11 @@ namespace MarkdownDeep title = "Warning!"; faIconName = "warning"; break; + case "important": + title = "Important!"; + faIconName = "warning"; + alertTypeClass = "warning"; + break; case "neutral": case "info": title = "Info"; @@ -516,7 +522,7 @@ namespace MarkdownDeep break; } b.Append("
");