Webiant Logo Webiant Logo
  1. No results found.

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

HighlightOptions.cs

namespace Nop.Services.Html.CodeFormatter;

/// 
/// Handles all of the options for changing the rendered code.
/// 
public partial class HighlightOptions
{
    /// 
    /// Code
    /// 
    public string Code { get; set; }

    /// 
    /// Display line numbers
    /// 
    public bool DisplayLineNumbers { get; set; }

    /// 
    /// Language
    /// 
    public string Language { get; set; }

    /// 
    /// Title
    /// 
    public string Title { get; set; }

    /// 
    /// Alternate line numbers
    /// 
    public bool AlternateLineNumbers { get; set; }
}