From e270f6e4c857d611b726caaa7f8fe8600648748c Mon Sep 17 00:00:00 2001 From: Keiji Yoshida Date: Tue, 25 Feb 2014 23:03:05 +0900 Subject: [PATCH] Update README.md --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) 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