Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
String initializeHtmlEntities
Last updated at 10:04 am UTC on 16 September 2017
https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references

initializeHtmlEntities
	"self initializeHtmlEntities"

	HtmlEntities := (Dictionary new: 128)
		at: 'amp'	put: $&;
		at: 'lt'		put: $<;
		at: 'gt'		put: $>;
		at: 'quot'	put: $";
		at: 'euro'	put: Character euro;
		yourself.
	#('nbsp' 'iexcl' 'cent' 'pound' 'curren' 'yen' 'brvbar' 'sect' 'uml' 'copy' 'ordf' 'laquo' 'not' 'shy' 'reg' 'hibar' 'deg' 'plusmn' 'sup2' 'sup3' 'acute' 
'micro' 'para' 'middot' 'cedil' 'sup1' 'ordm' 'raquo' 'frac14' 'frac12' 'frac34' 'iquest' 'Agrave' 'Aacute' 'Acirc' 'Atilde' 'Auml' 'Aring' 'AElig' 'Ccedil' 'Egrave'
 'Eacute' 'Ecirc' 'Euml' 'Igrave' 'Iacute' 'Icirc' 'Iuml' 'ETH' 'Ntilde' 'Ograve' 'Oacute' 'Ocirc' 'Otilde' 'Ouml' 'times' 'Oslash' 'Ugrave' 'Uacute' 'Ucirc' 'Uuml'
 'Yacute' 'THORN' 'szlig' 'agrave' 'aacute' 'acirc' 'atilde' 'auml' 'aring' 'aelig' 'ccedil' 'egrave' 'eacute' 'ecirc' 'euml' 'igrave' 'iacute' 'icirc' 'iuml' 'eth'
 'ntilde' 'ograve' 'oacute' 'ocirc' 'otilde' 'ouml' 'divide' 'oslash' 'ugrave' 'uacute' 'ucirc' 'uuml' 'yacute' 'thorn' 'yuml' ) 
withIndexDo: [:each :index | HtmlEntities at: each put: (index + 159) asCharacter]


Hypertext Markup Language - 2.0

https://www.w3.org/MarkUp/html-spec/html-spec_toc.html
https://www.w3.org/MarkUp/html-spec/html-spec_14.html#SEC14

HTML 3.2 Reference Specification

https://www.w3.org/TR/REC-html32
https://www.w3.org/TR/REC-html32#latin1

HTML 4.01

https://www.w3.org/TR/REC-html40/
https://www.w3.org/TR/REC-html40/sgml/entities.html

HTML 5

https://www.w3.org/TR/html5/