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.

About

Robert E Dickinson Robert E Dickinson created this social network on Ning.

Create your own social network!

Latest Activity

Robert E Dickinson added a note
Public Praises Science; Scientists Fault Public, Media Scientific Achievements Less Prominent Than a Decade Ago Overview Americans like science. Overwhelming majorities say that science has had a positive effect on society and that science has m...
3 hours ago
Robert E Dickinson added a blog post
This is a interesting Science Daily post on how many of our problematic brain problems are related to "survival" brain functions in insects. Human-like Brain Disturbances In Insects: Locusts Shed Light On Migraines, Stroke And Epilepsy ScienceDai...
on Sunday
Robert E Dickinson added a note
 The current InfoSWMM Report manager report is ALMOST good enough to be used as a calibration file except for: 1. the word Days 2. the semi colon and 3. the name of the object is not on the top line It is easy to convert the files by text editor b...
July 2
July 1
Joan Oppenheimer is now a member of SWMM5 - Stormwater Management Model
July 1
Robert E Dickinson added a note
Why are There 60 Minutes in an Hour? Published by Gary Wallace February 10, 2009, Category: Applied Mathematics We are all familiar with dividing our days into 24 hours and our hours into 60 minutes. But why do we use these particular units for...
June 26
Robert E Dickinson added 2 notes
June 25
Robert E Dickinson added 3 notes
June 23
Mark Drury is now a member of SWMM5 - Stormwater Management Model
June 18
suba is now a member of SWMM5 - Stormwater Management Model
June 15
Robert E Dickinson added a note
Life May Extend Planet's 'Life': Billion-year Life Extension For Earth Also Doubles Odds Of Finding Life On Other Planets ScienceDaily (June 13, 2009) — Roughly a billion years from now, the ever-increasing radiation from the sun will have heated ...
June 13
Robert E Dickinson added a note
Maybe It's Raining Less Than We Thought: Physicists Make A Splash With Raindrops Discovery ScienceDaily (June 11, 2009) — It's conventional wisdom in atmospheric science circles: large raindrops fall faster than smaller drops, because they're bigg...
June 12
Edward added a discussion
I am the supporter and user of SWMM5. Recently I built a small model using SWMM5 and found some weird outputs. The model build is attached herewith for your reference. The model is built for run with time series of inflows and downstream water le...
June 8
Edward is now a member of SWMM5 - Stormwater Management Model
June 8
Hi Doone! It has been a long while since we've chatted. I wanted to drop by to say hello...hoping that life is treating you and your family well. We are enjoying our time in Naples/Marco Island. Living on the Big Cypress basin has brought plenty o...
June 5
Robert E Dickinson added a note
Computer Graphics Researchers Simulate The Sounds Of Water And Other Liquids ScienceDaily (June 4, 2009) — Splash, splatter, babble, sploosh, drip, drop, bloop and ploop! Those are some of the sounds that have been missing from computer graphic ...
June 4
Robert E Dickinson added 2 notes
May 29
Tysne Pedler added 2 discussions
May 26
Tysne Pedler is now a member of SWMM5 - Stormwater Management Model
May 25
Welcome, Mike.
May 22

Word Cloud

SiteStats

77 Members
5 Groups
2 Events
33 Discussions
104 Blog posts
159 Photos
44 Videos
2 Music Tracks

Translate Tools

© 2009   Created by Robert E Dickinson on Ning.   Create Your Own Social Network

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