Merge pull request #1399 from HiroKws/correct/document/html
Correct document page of HTML page.
This commit is contained in:
commit
829fa4edd8
|
@ -55,7 +55,7 @@ #### Generating a link from a URI:
|
||||||
|
|
||||||
#### Generating a link that should use HTTPS:
|
#### Generating a link that should use HTTPS:
|
||||||
|
|
||||||
echo HTML::secure_link('user/profile', 'User Profile');
|
echo HTML::link_to_secure('user/profile', 'User Profile');
|
||||||
|
|
||||||
#### Generating a link and specifying extra HTML attributes:
|
#### Generating a link and specifying extra HTML attributes:
|
||||||
|
|
||||||
|
@ -119,7 +119,7 @@ #### Creating lists from an array of items:
|
||||||
echo HTML::ol(array('Get Peanut Butter', 'Get Chocolate', 'Feast'));
|
echo HTML::ol(array('Get Peanut Butter', 'Get Chocolate', 'Feast'));
|
||||||
|
|
||||||
echo HTML::ul(array('Ubuntu', 'Snow Leopard', 'Windows'));
|
echo HTML::ul(array('Ubuntu', 'Snow Leopard', 'Windows'));
|
||||||
|
|
||||||
echo HTML::dl(array('Ubuntu' => 'An operating system by Canonical', 'Windows' => 'An operating system by Microsoft'));
|
echo HTML::dl(array('Ubuntu' => 'An operating system by Canonical', 'Windows' => 'An operating system by Microsoft'));
|
||||||
|
|
||||||
<a name="custom-macros"></a>
|
<a name="custom-macros"></a>
|
||||||
|
|
Loading…
Reference in New Issue