Argentini.Halide.H3Text.ConvertToHtml C# (CSharp) Method

ConvertToHtml() public static method

sequences or
tags, except between [nofeed][/nofeed] tags. URLs and domain names can be converted to true hyperLinks if specified. Use the [nolink][/nolink] tag to skip specific areas of the string when scanning for linkable text. ]]>
public static ConvertToHtml ( string strVal, bool lineFeeds, string feedType ) : String
strVal string Text to process.
lineFeeds bool Convert lineFeeds to HTML equivalents (true or false).
feedType string /// " or "
". /// ]]> ///
return String
        public static String ConvertToHtml(string strVal, bool lineFeeds, string feedType)
        {
            return ConvertToHtml(strVal, lineFeeds, feedType, false, "");
        }

Same methods

H3Text::ConvertToHtml ( string strVal, bool lineFeeds, string feedType, bool hyperLinks, string linkParams ) : String