15 lines
		
	
	
		
			362 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			362 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {%- if doc.selector %}
 | |
| <section class="selector-list">
 | |
|   <h2 id="selectors">选择器</h2>
 | |
|   {% if doc.selectors %}
 | |
|     {$ doc.selectors | marked $}
 | |
|   {% else %}
 | |
|   <ul>
 | |
|     {%- for selector in doc.selectorArray %}
 | |
|     <li><code>{$ selector | replace(r/(:not\([^()]+\))/g, '<i>$1</i>') $}</code></li>
 | |
|     {% endfor %}
 | |
|   </ul>
 | |
|   {% endif %}
 | |
| </section>
 | |
| {% endif %}
 |