diff --git a/README.md b/README.md index fc98442..955be4b 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,42 @@ becomes ``` +Following doctypes are available: + + +```html +doctype html + + +doctype xml + + +doctype transitional + + +doctype strict + + +doctype frameset + + +doctype 1.1 + + +doctype basic + + +doctype mobile + +``` + +You can also use your own literal custom doctype: + +```html +doctype html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" + +``` + ### Creating Simple Tags ```gold