This is version 1.1 of the doctype extension library for Chicken Scheme.
Description
Provides XML doctypes as strings
Documentation
Exports strings corresponding to standard XML (XHTML, HTML) doctypes.
'''string:''' doctype:xhtml-1.0-strict '''string:''' doctype:html-4.01-strict '''string:''' doctype:xhtml-1.0-transitional '''string:''' doctype:html-4.01-transitional '''string:''' doctype:xhtml-1.0-frameset '''string:''' doctype:html-4.01-frameset '''string:''' doctype:html-3.2 '''string:''' doctype:html-2.0
Examples
#;1> (use doctype)
#;2> (print doctype:xhtml-1.0-strict)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
About this egg
Author
Version history
- 1.1
- Fix typo in html-4.01-transitional
- 1.0
- Initial release
License
Public domain.