diff options
author | Andrey Andreev <narf@devilix.net> | 2016-01-11 12:20:12 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-01-11 12:20:12 +0100 |
commit | 8f1047ff6bc961159a7103e7be02e6cc459d925e (patch) | |
tree | 1a346869a5f3500f1423dcf7b58ae6c82da1a8ca /user_guide_src/source/helpers | |
parent | 85ce9ab3f569450396a6f0688b2f047f58527598 (diff) |
Polish changes from PR #4269
Diffstat (limited to 'user_guide_src/source/helpers')
-rw-r--r-- | user_guide_src/source/helpers/html_helper.rst | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/user_guide_src/source/helpers/html_helper.rst b/user_guide_src/source/helpers/html_helper.rst index fffb2cab4..a19924dde 100644 --- a/user_guide_src/source/helpers/html_helper.rst +++ b/user_guide_src/source/helpers/html_helper.rst @@ -310,6 +310,11 @@ The following functions are available: 'content' => 'no-cache' ), array( + 'name' => 'Content-Type', + 'type' => 'http-equiv', + 'content' => 'text/html; charset=utf-8' + ), + array( 'name' => 'UTF-8', 'type' => 'charset' ) @@ -321,21 +326,22 @@ The following functions are available: // <meta name="description" content="My Great Site" /> // <meta name="keywords" content="love, passion, intrigue, deception" /> // <meta name="robots" content="no-cache" /> + // <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> // <meta charset="UTF-8" /> -.. php:function:: doctype([$type = 'html5']) +.. php:function:: doctype([$type = 'xhtml1-strict']) :param string $type: Doctype name :returns: HTML DocType tag :rtype: string - Helps you generate document type declarations, or DTD's. HTML 5 + Helps you generate document type declarations, or DTD's. XHTML 1.0 is used by default, but many doctypes are available. Example:: - echo doctype(); // <!DOCTYPE html> + echo doctype(); // <!DOCTYPE PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> echo doctype('html4-trans'); // <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |