mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-23 04:59:26 +08:00
08d466b6ab
Co-authored-by: Oliver King <oking3@uncc.edu>
10 lines
305 B
JavaScript
10 lines
305 B
JavaScript
import _ from './underscore.js';
|
|
|
|
// By default, Underscore uses ERB-style template delimiters. Change the
|
|
// following template settings to use alternative delimiters.
|
|
export default _.templateSettings = {
|
|
evaluate: /<%([\s\S]+?)%>/g,
|
|
interpolate: /<%=([\s\S]+?)%>/g,
|
|
escape: /<%-([\s\S]+?)%>/g
|
|
};
|