mirror of https://github.com/BOINC/boinc.git
22 lines
382 B
PHP
22 lines
382 B
PHP
<?php
|
|
require_once("../inc/util.inc");
|
|
|
|
page_head("Allowed HTML tags");
|
|
|
|
echo "
|
|
The following HTML tags are allowed in profiles, messages,
|
|
signatures, etc.:
|
|
<ul>
|
|
<li> <b> (bold)
|
|
<li> <i> (italics)
|
|
<li> <a> (hyperlink)
|
|
<li> <p> (paragraph)
|
|
<li> <br> (break)
|
|
<li> <pre> (preformatted)
|
|
<li> <img> (image; height cannot exceed 450 pixels)
|
|
</ul>
|
|
";
|
|
|
|
page_tail();
|
|
?>
|