markdown

Share on Facebook Share on Twitter Email
(märk'doun') pronunciation
n.
  1. A reduction in price.
  2. The amount by which a price is reduced.



1. amount subtracted from the selling price, when a customer sells securities to a dealer in the over-the-counter market. Had the securities been purchased from the dealer, the customer would have paid a markup, or an amount added to the purchase price.
The financial industry regulatory authority (FINRA) Rules of Fair Practice established 5% as a reasonable guideline in markups and markdowns, though many factors enter into the question of fairness, and exceptions are common.

2. reduction in the price at which the underwriters offer municipal bonds after the market has shown a lack of interest at the original price.

3. downward adjustment of the value of securities by banks and investment firms, based on a decline in market quotations.

4. reduction in the original retail selling price, which was determined by adding a percentage factor, called a markon, to the cost of the merchandise. Anything added to the markon is called a markup, and the term markdown does not apply unless the price is dropped below the original selling price.

Previous:Mark-To-Model, Mark to The Market
Next: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.

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


Random House Word Menu:

categories related to 'markdown'

Top
Random House Word Menu by Stephen Glazier
For a list of words related to markdown, see:

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

Syntax examples

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.

Paragraphs

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 return

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.

Emphasized text

*emphasis* or _emphasis_  (e.g., italics)
**strong emphasis** or __strong emphasis__ (e.g., boldface)

Code

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.

Lists

* 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

Headings

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
--------------------

Line Breaks

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

Blockquotes

> "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

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

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:

* * *
***
*****
- - -
---------------------------------------

Editors

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:

  • Dillinger.io an online Markdown editor with live preview and extended linkage to GitHub and Dropbox
  • iA Writer, a Markdown editor for Mac OS X and iOS.
  • Mou, a Markdown editor for Mac OS X.
  • Byword, a Markdown editor for Mac OS X.
  • MarkdownPad, a full-featured Markdown editor for Windows.
  • WMD, a Javascript "WYSIWYM" editor for Markdown (from AttackLab)
  • PageDown, a Javascript "WYSIWYM" editor for Markdown (from StackOverflow)
  • Texts, a "WYSIWYM" Markdown editor for Mac OS X and Windows

Implementations

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.

C

  • Sundown, a Markdown implementation in C.
  • Discount, a C implementation of the Markdown markup language
  • peg-markdown, an implementation of markdown in C, using a PEG (parsing expression grammar).

Java

  • MarkdownJ the pure Java port of Markdown.
  • pegdown, a pure-Java Markdown implementation based on a PEG parser
  • MarkdownPapers, Java implementation based on a JavaCC parser
  • Txtmark, another Markdown implementation written in Java

JavaScript

  • uedit, a Javascript "WYSIWYM" editor for Markdown
  • Discount, node.js bindings for the above C markdown library
  • markdown, a Markdown parser for JavaScript/node.js
  • marked, a fast Markdown parser

Lua

Perl

  • Markdown.pl, Text::Markdown - Convert Markdown syntax to (X)HTML

PHP

Ruby

  • Redcarpet, a Ruby library for Markdown processing, powered by the Sundown library
  • RDiscount, a Ruby library for Markdown processing, powered by the Discount library
  • BlueCloth, an implementation of Markdown in Ruby

Others

External links

See also

References

  1. ^ a b Markdown 1.0.1 readme source code "Daring Fireball - Markdown". 17-Dec-2004. http://daringfireball.net/projects/markdown/. 
  2. ^ "MarsEdit 2.3 ties the knot with Tumblr support - Ars Technica". http://arstechnica.com/apple/news/2009/03/marsedit-23-ties-the-knot-with-tumblr-support.ars. Retrieved 2009-08-11. 
  3. ^ "Review: Practical Django Projects - Ars Technica". http://arstechnica.com/open-source/news/2008/07/review-practical-django-projects.ars. Retrieved 2009-08-11. 

Translations:

Markdown

Top

Dansk (Danish)
n. - prisnedsættelse

Nederlands (Dutch)
prijsvermindering

Français (French)
n. - (Comm) rabais

Deutsch (German)
n. - Preissenkung

Ελληνική (Greek)
n. - (οικον.) έκπτωση (τιμής)

Italiano (Italian)
riduzione

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. - 減價

한국어 (Korean)
n. - 정찰가격의 인하

日本語 (Japanese)
n. - 値下げ, 値下げ額

العربيه (Arabic)
‏(الاسم) تخفيض في السعر‏

עברית (Hebrew)
n. - ‮הוזלה, הנחה‬


Post a question - any question - to the WikiAnswers community:

Copyrights:

Mentioned in

Net Yield (finance term)
Transaction Costs (finance term)
Distress Price (in accounting)
Markup (in accounting)
Marking Up or Down (finance term)