// This file is part of the “jQuery.Syntax” project, and is distributed under the MIT License. Syntax.register(“yaml”,function(a){a.push({pattern:/^s*#.*$/gm,klass:“comment”,allow:});a.push(Syntax.lib.singleQuotedString);a.push(Syntax.lib.doubleQuotedString);a.push({pattern:/(&|*)+/gi,klass:“constant”});a.push({pattern:/(.*?):/gi,matches:Syntax.extractMatches({klass:“keyword”})});a.push(Syntax.lib.webLink)});