Skip to content

Instantly share code, notes, and snippets.

View 0xbrock's full-sized avatar

Brock 0xbrock

View GitHub Profile
@0xbrock
0xbrock / shBrushFSharp.js
Created November 3, 2015 14:28 — forked from khabinov/shBrushFSharp.js
F# brush
// WTFPL licensed
// scratching the surface of research microsoft com/fsharp/manual/spec2.aspx#_Toc207785562
// omits reserved-ident-formats, reserved-symbolic-sequence, quote-op-*, symbolic-op, ...
SyntaxHighlighter.brushes.FSharp = function()
{
var keywords = 'abstract and as assert base begin class default delegate do done ' +
'downcast downto elif else end exception extern false finally for '+
'fun function if in inherit inline interface internal lazy let ' +
'match member module mutable namespace new null of open or '+
'override private public rec return static struct then to '+
public class Encrypted {
public string Value { get; set; }
public string Salt { get; set; }
}