What type of template are WP media-modal's templates?
I was looking at the Wordpress templates (html that's written to the page instead of awkwardly adding strings in JS).
There are a lot of templates like this in a post editor for example:
script type="text/html" id="tmpl-uploader-status-error"
span class="upload-error-filename"{{{ data.filename }}}/span
span class="upload-error-message"{{ data.message }}/span
/script
Now, I know these can be referenced with wp.media.template('uploader-status-error')( data )
to get html rendered for example, but what type of template is this? I would think this would be underscore since wp-views are Backbone, but it looks like they aren't the underscore syntax. Where is this documented?
Topic backbone underscore media-modal Wordpress javascript
Category Web