31 lines
1.3 KiB
C#
31 lines
1.3 KiB
C#
namespace Nop.Services.Html.CodeFormatter;
|
|
|
|
/// <summary>
|
|
/// Generates color-coded HTML 4.01 from MSH (code name Monad) source code.
|
|
/// </summary>
|
|
public partial class MshFormat : CodeFormat
|
|
{
|
|
/// <summary>
|
|
/// Regular expression string to match single line comments (#).
|
|
/// </summary>
|
|
protected override string CommentRegex => @"#.*?(?=\r|\n)";
|
|
|
|
/// <summary>
|
|
/// Regular expression string to match string and character literals.
|
|
/// </summary>
|
|
protected override string StringRegex => @"@?""""|@?"".*?(?!\\).""|''|'.*?(?!\\).'";
|
|
|
|
/// <summary>
|
|
/// The list of MSH keywords.
|
|
/// </summary>
|
|
protected override string Keywords => "function filter global script local private if else"
|
|
+ " elseif for foreach in while switch continue break"
|
|
+ " return default param begin process end throw trap";
|
|
|
|
/// <summary>
|
|
/// Use preprocessors property to highlight operators.
|
|
/// </summary>
|
|
protected override string Preprocessors => "-band -bor -match -notmatch -like -notlike -eq -ne"
|
|
+ " -gt -ge -lt -le -is -imatch -inotmatch -ilike"
|
|
+ " -inotlike -ieq -ine -igt -ige -ilt -ile";
|
|
} |