This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Issues.Markdownlint.
Summary
Registers a new URL resolver with default priority of 0.
- Assembly
- Cake
.Issues .Markdownlint .dll - Namespace
- Cake
.Issues .Markdownlint - Containing Type
- Markdownlint
Issues Aliases
Syntax
public static void MarkdownlintAddRuleUrlResolver(this ICakeContext context, Func<MarkdownlintRuleDescription, Uri> resolver)
Examples
Adds a provider with default priority of 0 returning a link for all rules with ID smaller than 20 to search with Google for the rule:
MarkdownlintAddRuleUrlResolver(x =>
x.RuleId < 20 ?
new Uri("https://www.google.com/search?q=%22" + x.Rule + ":%22+") :
null)
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
resolver | Func |
Resolver which returns an System.Uri linking to a site
containing help for a specific MarkdownlintRuleDescription . |
Return Value
Type | Description |
---|---|
void |