예제 #1
0
파일: Md.cs 프로젝트: Klim0o0/clean-code
        private static string RenderParagraph(string paragraph)
        {
            var tags = Tags.BuildTags(paragraph);

            return(MarkdownToHtmlConverter.Convert(paragraph, tags.PairTags, tags.SingleTags));
        }
예제 #2
0
파일: Md.cs 프로젝트: Arteeck/clean-code
 private static string RenderParagraph(string paragraph, IEnumerable <Tag> tags)
 {
     return(MarkdownToHtmlConverter.Convert(paragraph, tags));
 }