mirror of
https://github.com/stCarolas/setup-maven.git
synced 2024-11-27 05:36:09 +08:00
14 lines
385 B
JavaScript
14 lines
385 B
JavaScript
define(['./underscore'], function (underscore) {
|
|
|
|
// By default, Underscore uses ERB-style template delimiters. Change the
|
|
// following template settings to use alternative delimiters.
|
|
var templateSettings = underscore.templateSettings = {
|
|
evaluate: /<%([\s\S]+?)%>/g,
|
|
interpolate: /<%=([\s\S]+?)%>/g,
|
|
escape: /<%-([\s\S]+?)%>/g
|
|
};
|
|
|
|
return templateSettings;
|
|
|
|
});
|