-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Description
Detailed description
When using the files feature in Score, it is often useful to embed placeholders. Unfortunately, the placeholder syntax in Score ${...} is very commonly used and so can result in ambiguities.
It is possible to escape all of the other non-score placeholders, but this results in potentially major changes to a config file just to adopt score. A better approach would be to be able to define a custom pattern for a placeholder in a file - for example %{...} that could leave the existing file intact except for actual score placeholders.
Examples for config files that use ${...} as a variable expansion pattern:
Context
Adopting score should not require major changes to existing configuration - for example escaping existing variable expansions. This could for example mean that the configuration file does not work with existing local tooling.
This only makes sense for files rather than variables - as variables are only in the score of the score file anyway.
NOTE Score already supports noExpand on the files object to avoid processing placeholders.
Possible implementation
There are a number of approaches that could be taken.
- Allow changing of the leading
$with another character. E.g%for%{...}style placeholders. - Supply start and end placeholders entirely. E.g.
<<and>>for<<...>>style placeholders.
1 is simpler but 2 is more flexible as there could be unforseen situations where { is an integral part of the configuration language and a non overlapping prefix cannot be ruled out.
Additional information
No response