-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd9426d
commit 95fb824
Showing
2 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
13 changes: 12 additions & 1 deletion
13
src/Tests/MarkdownProcessor/MarkdownProcessorTests.WithMixedCaseInclude.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,12 @@ | ||
| ||
{ | ||
result: | ||
before | ||
|
||
theValue1<!-- singleLineInclude: theKey. path: {CurrentDirectory}thePath --> | ||
|
||
theValue1<!-- singleLineInclude: theKey. path: {CurrentDirectory}thePath --> | ||
|
||
theValue1<!-- singleLineInclude: theKey. path: {CurrentDirectory}thePath --> | ||
|
||
after | ||
} |
35 changes: 34 additions & 1 deletion
35
src/Tests/MarkdownProcessor/MarkdownProcessorTests.WithMixedCaseSnippet.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,34 @@ | ||
| ||
{ | ||
UsedSnippets: [ | ||
{ | ||
Key: thekey, | ||
Language: cs, | ||
Value: Snippet, | ||
Error: , | ||
FileLocation: thePath(1-2), | ||
IsInError: false | ||
} | ||
], | ||
result: | ||
before | ||
|
||
<!-- snippet: theKey --> | ||
```cs | ||
Snippet | ||
``` | ||
<!-- endSnippet --> | ||
|
||
<!-- snippet: TheKey --> | ||
```cs | ||
Snippet | ||
``` | ||
<!-- endSnippet --> | ||
|
||
<!-- snippet: thekey --> | ||
```cs | ||
Snippet | ||
``` | ||
<!-- endSnippet --> | ||
|
||
after | ||
} |