Example: I would like to express my <span class="emphasize"> deep compassion </span> for breathing.
Looks like: I would like to express my deep compassion for breathing.
Headers: <h1> </h1> through <h3> </h3> There are three header levels currently defined. h1 is the largest heading, h2 is a smaller sub-heading meant to go under an h1, and h3 is the smallest sub heading.
Example: <h1>Welcome </h1>
Looks like:
Lists: <ul> <li> </li> <ul> UL stands for unordered list. The UL tag encloses LI tags which stand for list item. It is easiest to understand how this works from an example:
<ul>
<li> List Item One </li>
<li> List Item Two </li>
</ul>
Looks like:
- List Item One
- List Item Two
Extra Line Breaks: <br \> BR stands for break. Since the input filter will only detect the first blank line you enter, the <br \> tag is for adding extra blank lines. Note in the example that it does not require a closing tag!
Some randomn miscelaneous text and some more and more and more.
<br \>
<br \>
Some more randomn miscelaneous text and some more and more and more.
Looks like:
Some randomn miscelaneous text and some more and more and more.
Some more randomn miscelaneous text and some more and more and more.
Some more randomn miscelaneous text and some more and more and more.
Ordered Lists: <ol> <li> </li> <ol> OL stands for ordered list. The OL tag encloses LI tags which stand for list item. It is easiest to understand how this works from an example:
<ol>
<li> List Item One </li>
<li> List Item Two </li>
</ol>
Looks like:
- List Item One
- List Item Two
Links: <a href=”URL”>text for the link</a>
Example: <a href=http://www.deproduction.org>Deproduction </a>
Looks like: Deproduction
Indenting a block of text: <div class="indent1"> This style tag will indent a block of text.
Example: <div class="indent1"> this text will be indented one level. </div>
Looks like:
this text will be indented one level.






