La documentación de Vim ilustra una "forma incorrecta" de agregar comentarios a HTML. ¿Qué tiene de malo?


0

El capítulo "syntax.txt" en la documentación oficial de Vim dice:

HTML comments are rather special (see an HTML reference document for the
details), and the syntax coloring scheme will highlight all errors.
However, if you prefer to use the wrong style (starts with <!-- and
ends with --!>) you can define:
        :let html_wrong_comments=1

El texto de ayuda describe un "estilo incorrecto". Pero no entendí: ¿Cómo está "mal" el estilo?

Respuestas:


2

Después de buscar en el libro Vim de Steve Oualline (New Riders Publishing, 2001), me di cuenta de cuál era la respuesta.

El "estilo incorrecto" incluye un signo de exclamación extra perdido cerca del final.

<!-- Right style -->
<!-- Wrong style --!>

¿Por qué no noté la marca adicional la primera vez que leí el texto de ayuda? Supongo que debí haberlo leído demasiado rápido.

¡Tonto de mí!

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.