
| Mark-To-Model, Mark to The Market | |
| Market, Market Analysis |
Reduction in selling price to stimulate demand, take advantage of reduced costs, or force competitors out of the market. Markdowns are common for domestic goods sold in foreign markets where incomes are lower, where wholesalers demand a larger piece of the revenue, and/or where surplus goods are disposed of. See also clearance; leader pricing; markup.
noun
The difference between the highest current bid price among broker-dealers in the market and the lower price that a dealer charges a customer.
Investopedia Says:
The broker offers a lower price to try stimulate trading in hopes that they will make the money back on the extra commissions.
Related Links:
How do you find the right broker for your investment needs? Start by reading our broker tutorial. Brokers and Online Trading
Stock prices seem random, but there are repeating cycles. Learn to take advantage. The Stock Cycle: What Goes Up Must Come Down

| This article relies on references to primary sources or sources affiliated with the subject, rather than references from independent authors and third-party publications. Please add citations from reliable sources. (February 2009) |
|
|
This article's use of external links may not follow Wikipedia's policies or guidelines. Please improve this article by removing excessive or inappropriate external links, and converting useful links where appropriate into footnote references. (March 2012) |
|
|
This article is written like a manual or guidebook. Please help rewrite this article from a descriptive, neutral point of view, and remove advice or instruction. (May 2010) |
Markdown is a lightweight markup language, originally created by John Gruber and Aaron Swartz allowing people "to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML)".[1] The language takes many cues from existing conventions for marking up plain text in email.
Markdown is also a Perl script written by Gruber, Markdown.pl, which converts marked-up text input to valid, well-formed XHTML or HTML and replaces left-pointing angle brackets ('<') and ampersands with their corresponding character entity references. It can be used as a standalone script, as a plugin for Blosxom or Movable Type, or as a text filter for BBEdit.[1]
Markdown has since been re-implemented by others as a Perl module available on CPAN (Text::Markdown), and in a variety of other programming languages. It is distributed under a BSD-style license and is included with, or available as a plugin for, several content-management systems.[2][3]
|
Contents
|
This is not an exhaustive listing of Markdown's syntax, and in many cases multiple styles of syntax are available to accomplish a particular effect. See the full Markdown syntax for more information. Characters which are ordinarily interpreted by Markdown as formatting commands will instead be interpreted literally if preceded by a backslash; for example, the sequence '\*' would output an asterisk rather than beginning a span of emphasized text. Markdown also does not transform any text within a "raw" block-level XHTML element; thus it is possible to include sections of XHTML within a Markdown source document by wrapping them in block-level XHTML tags.
A paragraph is one or more consecutive lines of text separated by one or more blank lines. Normal paragraphs should not be indented with spaces or tabs:
This is a paragraph. It has two sentences. This is another paragraph. It also has two sentences.
Line breaks inserted in the text are removed from the final result: the web browser is in charge of breaking lines depending on the available space. To force a line break, insert two spaces at the end of the line.
*emphasis* or _emphasis_ (e.g., italics)
**strong emphasis** or __strong emphasis__ (e.g., boldface)
To include code (formatted in monospace font), you can either surround inline code with backticks (`), like in
Some text with `some code` inside,
or indent several lines of code by at least four spaces, as in:
line 1 of code
line 2 of code
line 3 of code
The latter option makes Markdown retain all whitespace—as opposed to the usual behaviour, which, by removing line breaks and excess spaces, would break indentation and code layout.
* An item in a bulleted (unordered) list
* A subitem, indented with 4 spaces
* Another item in a bulleted list
1. An item in an enumerated (ordered) list 2. Another item in an enumerated list
HTML headings are produced by placing a number of hashes before the header text corresponding to the level of heading desired (HTML offers six levels of headings), like so:
# First-level heading #### Fourth-level heading
The first two heading levels also have an alternative syntax:
First-level heading =================== Second-level heading --------------------
When you do want to insert a break tag using Markdown, you end a line with two or more spaces, then type return. Ex: def show_results tag_br space space end
Result: def show_results end
> "This entire paragraph of text will be enclosed in an HTML blockquote element. Blockquote elements are reflowable. You may arbitrarily wrap the text to your liking, and it will all be parsed into a single blockquote element."
The above would translate into the following HTML:
<blockquote><p>This entire paragraph of text will be enclosed in an HTML blockquote element. Blockquote elements are reflowable. You may arbitrarily wrap the text to your liking, and it will all be parsed into a single blockquote element.</p></blockquote>
Links may be included inline:
[link text here](link.address.here) Ex. [Markdown](http://en.wikipedia.com/wiki/Markdown)
Alternatively, links can be placed in footnotes outside of the paragraph, being referenced with some sort of reference tag. For example, including the following inline:
[link text here][linkref]
would produce a link if the following showed up outside of the paragraph (or at the end of the document):
[linkref]: link.address.here "link title here"
Horizontal rules are created by placing three or more hyphens, asterisks, or underscores on a line by themselves. You may use spaces between the hyphens or asterisks. Each of the following lines will produce a horizontal rule:
* * * *** ***** - - - ---------------------------------------
While Markdown is a minimal markup language and is easily read and edited with a normal text editor there are special designed editors which preview the files direct with styles. Below there is a list of editors available:
Many people have implemented parsers and generators in different programming languages because it is easily read and written. Below there is a list sorted on programming language implementations.
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)
Dansk (Danish)
n. - prisnedsættelse
Nederlands (Dutch)
prijsvermindering
Français (French)
n. - (Comm) rabais
Deutsch (German)
n. - Preissenkung
Ελληνική (Greek)
n. - (οικον.) έκπτωση (τιμής)
Português (Portuguese)
n. - redução de preço (f)
Русский (Russian)
снижение цен, размер уценки
Español (Spanish)
n. - rebaja, reducción de los precios
Svenska (Swedish)
n. - prisnedsättning
中文(简体)(Chinese (Simplified))
减价
中文(繁體)(Chinese (Traditional))
n. - 減價
العربيه (Arabic)
(الاسم) تخفيض في السعر
עברית (Hebrew)
n. - הוזלה, הנחה
If you are unable to view some languages clearly, click here.