Skip to content

Commit

Permalink
fix(XmlToTooltip): support multiple XML tags in single summary
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher - Marcel Böddecker committed Feb 18, 2019
1 parent 28b4fde commit 049d3fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/XmlDocumentationAttribute.Fody/ModuleWeaver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public sealed class ModuleWeaver : BaseModuleWeaver
@"<\s*summary\s*>(?'summary'(?:\s*\/{3}.*)*)<\s*\/\s*summary\s*>(?:\s*\/{3}.*|\s|\[[\p{L}\p{M}\p{N}\p{P}\p{S}\p{Z}\p{C}]*?\])*[\s\w<>.\[\]?]*\s(?'identifier'\w+)(?:\((?'methodParameters'.*)\))?",
RegexOptions.Compiled);
private static readonly Regex _xmlTagBodyCleanUpRegex = new Regex(
@"<\s*\w*\b.*?""(?'identifier'.*)""\s*\/\s*>",
@"<\s*\w*\b.*?""(?'identifier'\w*)""\s*\/\s*>",
RegexOptions.Compiled);

private TypeDefinition _attributeDefinition;
Expand Down

0 comments on commit 049d3fc

Please sign in to comment.