-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pre-processor keys no longer accept underscores; pre-processor interp…
…olations no longer accept hyphens
- Loading branch information
1 parent
bb08e30
commit 62c0e84
Showing
9 changed files
with
51 additions
and
52 deletions.
There are no files selected for viewing
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
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
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
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,9 +1,9 @@ | ||
simpleKey: '@{KEY_A}' | ||
simpleKey: '@{KEY-A}' | ||
multilineValue$: | | ||
hello world @{KEY_B} | ||
hello world @{KEY-B} | ||
multilineList: | ||
- | | ||
hello world | ||
test | ||
@{KEY_C} | ||
@{KEY-C} | ||
another line |
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,17 +1,17 @@ | ||
# This is a comment | ||
|
||
FIRST_KEY Value of the first key | ||
SECOND_KEY \ Value of the second key | ||
FIRST-KEY Value of the first key | ||
SECOND-KEY \ Value of the second key | ||
# Comment attached to third key | ||
THIRD_KEY \ Value of the third key \ | ||
THIRD-KEY \ Value of the third key \ | ||
|
||
# Dangling comment in the middle | ||
|
||
# Comment attached to fourth key | ||
FOURTH_KEY \\ Value of the fourth key \\ | ||
5TH_KEY \\Value of the fifth key\\ | ||
FOURTH-KEY \\ Value of the fourth key \\ | ||
5TH-KEY \\Value of the fifth key\\ | ||
|
||
6TH_KEY \ | ||
7TH_KEY \\ | ||
6TH-KEY \ | ||
7TH-KEY \\ | ||
|
||
# Dangling comment at the end |
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
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,25 +1,25 @@ | ||
KEY_VERY_TOP_1 Value very top 1 | ||
KEY_VERY_TOP_2 Value very top 2 | ||
KEY-VERY-TOP-1 Value very top 1 | ||
KEY-VERY-TOP-2 Value very top 2 | ||
|
||
# This is key a | ||
# - var_a: TypeA | ||
# - var_b: TypeB | ||
# - var_c: TypeC | ||
# - var_d: TypeD | ||
KEY_A Value A | ||
KEY_NEAR_TO_A Value near to a | ||
KEY-A Value A | ||
KEY-NEAR-TO-A Value near to a | ||
|
||
# This is key b | ||
# - var_b: TypeB | ||
# - var_a: TypeUpdated | ||
KEY_B Value B | ||
KEY_NEAR_TO_B_1 Value near to b 1 | ||
KEY_NEAR_TO_B_2 Value near to b 2 | ||
KEY_Y Value Y | ||
KEY_DISCONTINUED This one will be left untouched | ||
KEY-B Value B | ||
KEY-NEAR-TO-B-1 Value near to b 1 | ||
KEY-NEAR-TO-B-2 Value near to b 2 | ||
KEY-Y Value Y | ||
KEY-DISCONTINUED This one will be left untouched | ||
|
||
# This is key c | ||
# - var_y: TypeY | ||
KEY_C Value C | ||
KEY-C Value C | ||
|
||
KEY_AT_BOTTOM Value at bottom | ||
KEY-AT-BOTTOM Value at bottom |
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,24 +1,24 @@ | ||
KEY_VERY_TOP_1 Value very top 1 | ||
KEY_VERY_TOP_2 Value very top 2 | ||
KEY-VERY-TOP-1 Value very top 1 | ||
KEY-VERY-TOP-2 Value very top 2 | ||
|
||
# This is key a | ||
# - var_d: TypeD | ||
# - var_a: TypeA | ||
# - var_b: TypeB | ||
# - var_c: TypeC | ||
KEY_A Value A | ||
KEY_NEAR_TO_A Value near to a | ||
KEY-A Value A | ||
KEY-NEAR-TO-A Value near to a | ||
|
||
# This is key b | ||
# - var_b: TypeB | ||
# - var_a: TypeUpdated | ||
KEY_B Value B | ||
KEY_NEAR_TO_B_1 Value near to b 1 | ||
KEY_NEAR_TO_B_2 Value near to b 2 | ||
KEY_Y Value Y | ||
KEY-B Value B | ||
KEY-NEAR-TO-B-1 Value near to b 1 | ||
KEY-NEAR-TO-B-2 Value near to b 2 | ||
KEY-Y Value Y | ||
|
||
# This is key c | ||
# - var_y: TypeY | ||
KEY_C Value C | ||
KEY-C Value C | ||
|
||
KEY_AT_BOTTOM Value at bottom | ||
KEY-AT-BOTTOM Value at bottom |
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,3 +1,3 @@ | ||
KEY_A value a | ||
KEY_B value b | ||
KEY_C before {x} after | ||
KEY-A value a | ||
KEY-B value b | ||
KEY-C before {x} after |