A developer is working with the following HTL expression in a component rendering script:
${'path/page.infinity.json' @extension = 'html',
removeSelectors = ['foo'],
selectors = ['foo', 'bar'],
prependSuffix = 'hello',
suffix = 'world' }
What is the expected output of this expression?
- path/page.foo.bar.html/hello/world
- path/page.infinity.json.bar.html/world
- path/page.bar.html/hello/world
- path/page.bar.html/world
Reveal Solution Next Question