File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/Elastic.Markdown/Myst/Directives
tests/Elastic.Markdown.Tests/DocSet Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,8 @@ private void ExtractInclusionPath(ParserContext context)
7474
7575 // literal includes may point to locations other than `_snippets` since they do not
7676 // participate in emitting links
77- if ( Literal ) return ;
77+ if ( Literal )
78+ return ;
7879
7980 var file = FileSystem . FileInfo . New ( IncludePath ) ;
8081
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public void EmitsLinks() =>
2626
2727 [ Fact ]
2828 public void ShouldNotIncludeSnippets ( ) =>
29- Reference . Links . Should ( ) . NotContain ( l=> l . Contains ( "_snippets/" ) ) ;
29+ Reference . Links . Should ( ) . NotContain ( l => l . Contains ( "_snippets/" ) ) ;
3030}
3131
3232public class GitCheckoutInformationTests ( ITestOutputHelper output ) : NavigationTestsBase ( output )
You can’t perform that action at this time.
0 commit comments