You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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 noExpandon 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
The text was updated successfully, but these errors were encountered:
Interesting. Prior art I've found are things like:
Go text/template
Go template language allows the delimiters to be set at the Parser level: https://pkg.go.dev/text/template#Template.Delims. This applies across all Go template files involved in simultaneous interpretation and cannot be turned on and off per template. Since Score allows team A to pull in a Score file published by team B, we would need to support this per Score file to avoid mandating the same delimiters.
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.
$
with another character. E.g%
for%{...}
style placeholders.<<
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
The text was updated successfully, but these errors were encountered: