mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	In this commit we add support for some tags which are also called void-elements according to http://w3c.github.io/html/syntax.html#void-elements to be parsed by our template parser and get tagged as singleton_html_tags. Fixes: #8387.
		
			
				
	
	
		
			15 lines
		
	
	
		
			598 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			598 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
<div id="hotspot_{{name}}_overlay" class="hotspot overlay" data-overlay="hotspot_{{name}}_overlay">
 | 
						|
    <div class="hotspot-popover">
 | 
						|
        <div class="hotspot-popover-top">
 | 
						|
            <h1 class="hotspot-title">{{title}}</h1>
 | 
						|
        </div>
 | 
						|
        <div class="hotspot-popover-content">
 | 
						|
            <p class="hotspot-description">{{description}}</p>
 | 
						|
        </div>
 | 
						|
        <div class="hotspot-popover-bottom">
 | 
						|
            <img class="hotspot-img" alt=_("hotspot illustration") src="{{img}}">
 | 
						|
            <button class="hotspot-confirm">{{t 'Got it!' }}</button>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</div>
 |