started start quick guide getting emberjs ember docs ember.js sproutcore handlebars.js

ember.js - start - emberjs api docs



¿Cómo hacer comentarios en los manubrios de script de emberjs? (2)

Desde el aspecto de la página de github , ¡quieres {{! comment text here}} {{! comment text here}} :

Comentarios

Puede agregar comentarios a sus plantillas con la siguiente sintaxis.

{{! This is a comment }}

También puede usar comentarios html reales si desea que terminen en la salida.

<div> {{! This comment will not end up in the output }} <!-- This comment will show up in the output --> </div>

¿Alguien puede decirme cómo incluir el código comentado en las plantillas de manubrios de emberjs?

<script id="restaurantDetail" data-template-name=''restaurantDetail'' type="text/x-handlebars"> //Commented code goes here </script>


Recomiendo usar {{!-- comment here --}} porque esta sintaxis de comentarios puede contener nuevas líneas y también }} dentro del comentario, por ejemplo:

Bad comments: {{! badly commented {{if somecondition "red" "blue" }} }} {{! badly multiline comments another line }} Comment that works: {{!-- this is commented correctly {{if somecondition "red" "blue" }} --}} {{!-- correct multiline comments another line --}}

(Sé que esta es una pregunta antigua, pero esta respuesta aparece primero en Google cuando busco comentarios de plantilla de color ámbar, así que quería ayudar a los futuros lectores)