Last active
October 15, 2019 13:19
-
-
Save freakboy3742/1f801db3d441859e91f6304bad8abe09 to your computer and use it in GitHub Desktop.
Inherited properties in TOML
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
[thing] | |
name = "demo" | |
[thing.version_a] | |
items = ['base1', 'base2', 'first1', 'first2'] | |
[thing.version_b] | |
items = ['base1', 'base2', 'second1', 'second2'] |
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
[thing] | |
name = "demo" | |
items = ['base1', 'base2'] | |
[thing.version_a] | |
items = ['first1', 'first2'] | |
[thing.version_b] | |
items = ['second1', 'second2'] |
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
[thing] | |
name = "demo" | |
items = ['base1', 'base2'] | |
[thing.version_a] | |
items = ['+', 'first1', 'first2'] | |
[thing.version_b] | |
items = ['+', 'second1', 'second2'] | |
[thing.version_c] | |
items = ['third1', 'third2'] |
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
[thing] | |
name = "demo" | |
items = ['base1', 'base2'] | |
[thing.version_a] | |
sub_items = ['first1', 'first2'] | |
[thing.version_b] | |
sub_items = ['second1', 'second2'] |
What about separate
extend
vsinherit
directives?
“Extend” would do the job!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What about separate
extend
vsinherit
directives?