19 lines
		
	
	
		
			709 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			709 B
		
	
	
	
		
			Factor
		
	
	
| ! Copyright (C) 2005, 2009 Daniel Ehrenberg
 | |
| ! See http://factorcode.org/license.txt for BSD license.
 | |
| USING: help.markup help.syntax xml.entities ;
 | |
| IN: xml.entities.html
 | |
| 
 | |
| ARTICLE: "xml.entities.html" "HTML entities"
 | |
| { $vocab-link "xml.entities.html" } " defines words for using entities defined in HTML/XHTML."
 | |
| { $subsection html-entities }
 | |
| { $subsection with-html-entities } ;
 | |
| 
 | |
| HELP: html-entities
 | |
| { $description "A hash table from HTML entity names to their character values." }
 | |
| { $see-also entities with-html-entities } ;
 | |
| 
 | |
| HELP: with-html-entities
 | |
| { $values { "quot" "a quotation ( -- )" } }
 | |
| { $description "Calls the given quotation using HTML entity values." }
 | |
| { $see-also html-entities with-entities } ;
 |