📄 mshformat.cs
字号:
using System;
using System.Text;
using System.Text.RegularExpressions;
namespace CodeFormatter
{
/// <summary>
/// Generates color-coded HTML 4.01 from MSH (code name Monad) source code.
/// </summary>
public class MshFormat : CodeFormat
{
/// <summary>
/// Regular expression string to match single line comments (#).
/// </summary>
protected override string CommentRegEx
{
get { return @"#.*?(?=\r|\n)"; }
}
/// <summary>
/// Regular expression string to match string and character literals.
/// </summary>
protected override string StringRegEx
{
get { return @"@?""""|@?"".*?(?!\\).""|''|'.*?(?!\\).'"; }
}
/// <summary>
/// The list of MSH keywords.
/// </summary>
protected override string Keywords
{
get
{
return "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 hilight operators.
/// </summary>
protected override string Preprocessors
{
get
{
return "-band -bor -match -notmatch -like -notlike -eq -ne"
+ " -gt -ge -lt -le -is -imatch -inotmatch -ilike"
+ " -inotlike -ieq -ine -igt -ige -ilt -ile";
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -