From 23372f048b875b2b73bdc97d84affff914c6c489 Mon Sep 17 00:00:00 2001 From: Seemant Rajvanshi Date: Thu, 10 Mar 2016 09:58:15 +0000 Subject: [PATCH] Change extension to html --- src/DocNet/SimpleNavigationElement.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DocNet/SimpleNavigationElement.cs b/src/DocNet/SimpleNavigationElement.cs index 53ba3fa..0eeaa00 100644 --- a/src/DocNet/SimpleNavigationElement.cs +++ b/src/DocNet/SimpleNavigationElement.cs @@ -212,7 +212,7 @@ namespace Docnet _targetURLForHTML = (this.Value ?? string.Empty); if(_targetURLForHTML.ToLowerInvariant().EndsWith(".md")) { - _targetURLForHTML = _targetURLForHTML.Substring(0, _targetURLForHTML.Length-3) + ".htm"; + _targetURLForHTML = _targetURLForHTML.Substring(0, _targetURLForHTML.Length-3) + ".html"; } _targetURLForHTML = _targetURLForHTML.Replace("\\", "/"); }