예제 #1
0
파일: Utility.cs 프로젝트: vicancy/docfx
 public static bool IsSupportedRelativeHref(HrefType hrefType)
 {
     // TocFile href type can happen when homepage is set to toc.yml explicitly
     return hrefType == HrefType.RelativeFile
         || hrefType == HrefType.YamlTocFile
         || hrefType == HrefType.MarkdownTocFile;
 }
예제 #2
0
파일: Utility.cs 프로젝트: zyj0021/docfx
 public static bool IsSupportedRelativeHref(HrefType hrefType)
 {
     // TocFile href type can happen when homepage is set to toc.yml explicitly
     return(hrefType == HrefType.RelativeFile ||
            hrefType == HrefType.YamlTocFile ||
            hrefType == HrefType.MarkdownTocFile);
 }