mirror of
https://github.com/QL-Win/QuickLook.git
synced 2026-05-07 02:00:21 +08:00
16 lines
489 B
C#
16 lines
489 B
C#
using ICSharpCode.AvalonEdit.Rendering;
|
|
|
|
namespace QuickLook.Plugin.TextViewer.Themes.HighlightingDefinitions.Light;
|
|
|
|
/// <summary>
|
|
/// Rainbow PSV Highlighting Definition
|
|
/// </summary>
|
|
public class PSVHighlightingDefinition : LightHighlightingDefinition
|
|
{
|
|
public override string Name => "PSV";
|
|
|
|
public override string Extension => ".psv";
|
|
|
|
public override DocumentColorizingTransformer[] LineTransformers { get; } = [new CSVHighlightingDefinition.RainbowTransformer('|')];
|
|
}
|