Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

IBBCodeHelper.cs

namespace Nop.Services.Html;

public partial interface IBBCodeHelper
{
    /// 
    /// Formats the text
    /// 
    /// Text
    /// A value indicating whether to replace Bold
    /// A value indicating whether to replace Italic
    /// A value indicating whether to replace Underline
    /// A value indicating whether to replace URL
    /// A value indicating whether to replace Code
    /// A value indicating whether to replace Quote
    /// A value indicating whether to replace Img
    /// Formatted text
    string FormatText(string text,
        bool replaceBold,
        bool replaceItalic,
        bool replaceUnderline,
        bool replaceUrl,
        bool replaceCode,
        bool replaceQuote,
        bool replaceImg);

    /// 
    /// Removes all quotes from string
    /// 
    /// Source string
    /// string
    string RemoveQuotes(string str);
}