SWMM5 - Stormwater Management Model

SWMM 5, Watersheds, Water Quality,Hydrology, Hydraulics - Watersheds

+ **Wiki Formatting Guide**
-----------


[[toc]]
++ General Notes

All text is entered as plain text, and will be converted to HTML entities as \
necessary.  This means that {{<}}, {{>}}, {{&}}, and so on are converted for \
you (except in special situations where the characters are Wiki markup; \


Just hit "return" twice to make a paragraph break.  If you want \
to keep the same logical line but have to split it across \
two physical lines (such as when your editor only shows a certain number \
of characters per line), end the line with a backslash {{\}} and hit \
return once.  This will cause the two lines to be joined on display, and the \
backslash will not show.  (If you end a line with a backslash and a tab \
or space, it will ''not'' be joined with the next line, and the backslash \
will be printed.)


----

++ Inline Formatting

|| {{``//emphasis text//``}}                 || //emphasis text// ||
|| {{``**strong text**``}}                   || **strong text** ||
|| {{``//**emphasis and strong**//``}}       || //**emphasis and strong**// ||
|| {{``{{teletype text}}``}}                    || {{teletype text}} ||
|| {{``@@--- delete text +++ insert text @@``}} || @@--- delete text +++ insert text @@ ||
|| {{``@@--- delete only @@``}}                 || @@--- delete only @@ ||
|| {{``@@+++ insert only @@``}}                 || @@+++ insert only @@ ||


----

++ Literal Text

If you don't want Niki to parse some text, enclose it in two backticks (not single-quotes).


<code>
This //text// gets **parsed**.
``This //text// does not get **parsed**.``
</code>

This //text// gets **parsed**.

``This //text// does not get **parsed**.``

----

++ Headings

You can make various levels of heading by putting \
equals-signs before and after the text (all on its \
own line):

<code>
+++ Level 3 Heading
++++ Level 4 Heading
+++++ Level 5 Heading
++++++ Level 6 Heading
</code>

+++ Level 3 Heading
++++ Level 4 Heading
+++++ Level 5 Heading
++++++ Level 6 Heading

----

++ Table of Contents

To create a list of every heading, with a link to that heading, put a table of contents tag on its own line.

<code>
[[toc]]
</code>

----

++ Horizontal Rules

Use four dashes ({{``----``}}) to create a horizontal rule.

----

++ Lists

+++ Bullet Lists

You can create bullet lists by starting a paragraph with one or \
more asterisks.

<code>
* Bullet one
 * Sub-bullet
</code>

* Bullet one
 * Sub-bullet

+++ Numbered Lists

Similarly, you can create numbered lists by starting a paragraph \
with one or more hashes.

<code>
# Numero uno
# Number two
 # Sub-item
</code>

# Numero uno
# Number two
 # Sub-item


+++ Mixing Bullet and Number List Items

You can mix and match bullet and number lists:

<code>
# Number one
 * Bullet
 * Bullet
# Number two
 * Bullet
 * Bullet
  * Sub-bullet
   # Sub-sub-number
   # Sub-sub-number
# Number three
 * Bullet
 * Bullet
</code>

# Number one
 * Bullet
 * Bullet
# Number two
 * Bullet
 * Bullet
  * Sub-bullet
   # Sub-sub-number
   # Sub-sub-number
# Number three
 * Bullet
 * Bullet



+++ Definition Lists

You can create a definition (description) list with the following syntax:

<code>
: Item 1 : Something
: Item 2 : Something else
</code>

: Item 1 : Something
: Item 2 : Something else

----

++ Block Quotes

You can mark a blockquote by starting a line with one or more '>' \
characters, followed by a space and the text to be quoted.


<code>
This is normal text here.

> Indent me! The quick brown fox jumps over the lazy dog. \
Now this the time for all good men to come to the aid of \
their country. Notice how we can continue the block-quote \
in the same "paragraph" by using a backslash at the end of \
the line.
>
> Another block, leading to...
>> Second level of indenting.  This second is indented even \
more than the previous one.

Back to normal text.
</code>


This is normal text here.

> Indent me! The quick brown fox jumps over the lazy dog. \
Now this the time for all good men to come to the aid of \
their country. Notice how we can continue the block-quote \
in the same "paragraph" by using a backslash at the end of \
the line.
>
> Another block, leading to...
>> Second level of indenting.  This second is indented even \
more than the previous one.

Back to normal text.


----

++ Links and Images

+++ Wiki Links

SmashWordsTogether to create a page link.

You can force a WikiPage name '''not''' to be clickable by putting \
an exclamation mark in front of it.

<code>
WikiPage !WikiPage
</code>

WikiPage !WikiPage

You can create a "described" or "labeled" link to a wiki page by putting the page name in brackets, followed by some text.

<code>
[WikiPage Descriptive text for the link.]
</code>

[WikiPage Descriptive text for the link.]

> **Note:** existing wiki pages must be in the [RuleWikilink wikilink] {{pages}} configuration,  and the [RuleWikilink wikilink] {{view_url}} configuration value must be set for the linking to work.


+++ URLs

Create a remote link simply by typing its URL: http://widgetlaboratory.com.

If you like, enclose it in brackets to create a numbered reference \
and avoid cluttering the page; {{``[http://widgetlaboratory.com/]``}} becomes [http://widgetlaboratory.com/].

Or you can have a described-reference instead of a numbered reference:
<code>
[http://widgetlaboratory.com Widget Laboratory]
</code>

[http://widgetlaboratory.com Widget Laboratory]

+++ Images

You can put a picture in a page by typing the URL to the picture \
(it must end in gif, jpg, or png).
<code>
http://widgetlaboratory.ning.com/niki.jpg
</code>

http://widgetlaboratory.ning.com/niki.jpg

You can use the described-reference URL markup to give the image an ALT tag:
<code>
[http://widgetlaboratory.ning.com/niki.jpg Niki]
</code>

[http://widgetlaboratory.ning.com/niki.jpg Niki]

----

++ Tables

You can create tables using pairs of vertical bars:

<code>
|| cell one || cell two ||
|||| big ol' line ||
|| cell four || cell five ||
|| cell six || here's a very long cell ||
</code>

|| cell one || cell two ||
|||| big ol' line ||
|| cell four || cell five ||
|| cell six || here's a very long cell ||

<code>
|| lines must start and end || with double vertical bars || nothing ||
|| cells are separated by || double vertical bars || nothing ||
|||| you can span multiple columns by || starting each cell ||
|| with extra cell |||| separators ||
|||||| but perhaps an example is the easiest way to see ||
</code>

|| lines must start and end || with double vertical bars || nothing ||
|| cells are separated by || double vertical bars || nothing ||
|||| you can span multiple columns by || starting each cell ||
|| with extra cell |||| separators ||
|||||| but perhaps an example is the easiest way to see ||

Last updated by Robert E Dickinson May. 10, 2008.

Latest Activity

Robert E Dickinson added a blog post
Image via Wikipedia http://sciencenow.sciencemag.org/icons/blueplus.gif); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; margin-right: 0px; margin-bottom: 1em; margin-left: 0px;…
10 hours ago
10 hours ago
Snowlapse Monday, February 8th, 2010 Noel St. John, quasi-official photographer of TheAgitator.com, made this very cool time-lapse animation of the D.C.-area’s blizzard this past weekend.
10 hours ago
Robert E Dickinson added 2 blog posts
on Sunday
A blog post by Robert E Dickinson was featured
The solution is iterative but each iteration is dependent on the CFL or explicit time step. The time step we select is based on the CFL condition but instead of just using the explicit solution we iterate until the node depths are converged or a max…
on Friday
Marisa Oliveira is now a member of SWMM5 - Stormwater Management Model
on Thursday
Robert E Dickinson added a note
A BETTER TEXT EDITOR, ON FORUM AND BLOG POSTS For Ning Creators and members alike, adding content is an essential part of any Ning Network. When it comes to adding text, the text editor members rely on should be as easy to use as possible. Sta…
on Thursday
February 1
Chris Olson is now a member of SWMM5 - Stormwater Management Model
February 1
End of January version of QA/QC GUI and Engine Epaswmm5.exe swmm5.dll
January 31
Robert E Dickinson added 2 notes
January 30
Robert E Dickinson added a blog post
A Short History of Hydrogen Sulfide From the sewers of Paris to physiological messenger Roger P. Smith from http://www.americanscientist.org/issues/pub/2010/1/a-short-history-of-hydrogen-sulfide/2 Early last year, reports began to emerge in the Sout…
January 30
Robert E Dickinson Ich bin ein Watershed Engineer, die weniger Überschwemmungen und eine bessere Wasserqualität für die Erde will.
January 30
Robert E Dickinson added a page
January 30
Robert E Dickinson added a page
January 30
Robert E Dickinson added a page
January 30
Robert E Dickinson added a note
As rivers go, the Mississippi is one of the world’s biggies. It’s 3.734 km (2.320 mi) long and has a watershed of more than 3,2 million sq. km (1.245.000 sq. mi), the third-largest in the world (preceded only by the Amazon and Congo rivers), drai…
January 26
Robert E Dickinson added 2 photos
January 26
Robert E Dickinson added a blog post
Comment: A really nice water analogy for the field properties Divergence, Curl and Gradient from the Blog Starts With a Bang ....it's pretty mathematically intensive, but what's missing from most textbooks and E&M courses are physical explanations…
January 24
Robert E Dickinson added 2 notes
January 24

© 2010   Created by Robert E Dickinson

Badges  |  Report An Issue | SWMM 5 Blog  |  Privacy  |  Terms of Service

.xg_widget_main .module_blog {height: 900px;overflow : auto;position:relative;} /* Scroll Bar for Latest Activity */ .xg_widget_main .xg_module_activity .xg_module_body {height: 900px;overflow : auto;position:relative;}