Markdown vs markup - are they related? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T04:58:01Z http://stackoverflow.com/feeds/question/24041 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/24041/markdown-vs-markup-are-they-related 6 Markdown vs markup - are they related? Ron Harlev 2008-08-23T06:34:09Z 2009-05-13T01:48:41Z <p>I'm using markdown to edit this question right now. In some <a href="http://en.wikipedia.org/wiki/Wikipedia:How_to_edit_a_page#Wiki_markup" rel="nofollow">wikis</a> I used wiki markup. Are they the same thing? Are they related? Please explain. If I want to implement one or the other in a web project (like stackoverflow) what do I need to use?</p> http://stackoverflow.com/questions/24041/markdown-vs-markup-are-they-related/24042#24042 4 Answer by Ryan Fox for Markdown vs markup - are they related? Ryan Fox 2008-08-23T06:38:07Z 2008-08-23T06:38:07Z <p>Markdown is a play on words because it is markup. "Markdown" is a proper noun.</p> <p>Markup is just a way of providing functionality above plain text. For example: formatting, links, images, etc.</p> http://stackoverflow.com/questions/24041/markdown-vs-markup-are-they-related/24044#24044 14 Answer by ryw for Markdown vs markup - are they related? ryw 2008-08-23T06:40:08Z 2008-08-23T06:40:08Z <ul> <li><a href="http://en.wikipedia.org/wiki/Markup_language" rel="nofollow">Markup</a> is a generic term for a language that describes a document's formatting</li> <li><a href="http://en.wikipedia.org/wiki/Markdown" rel="nofollow">Markdown</a> is a specific markup library: <a href="http://daringfireball.net/projects/markdown/" rel="nofollow"><a href="http://daringfireball.net/projects/markdown/" rel="nofollow">http://daringfireball.net/projects/markdown/</a></a> </li> </ul> http://stackoverflow.com/questions/24041/markdown-vs-markup-are-they-related/24093#24093 7 Answer by Keith for Markdown vs markup - are they related? Keith 2008-08-23T09:09:32Z 2009-05-13T01:48:41Z <p>Mark-up is a term from print editing - the editor would go through the text and add annotations (i.e. this in italic, that in bold) for the printers to use when producing the final version. This was called marking up the text.</p> <p>A computer mark-up language is just a standardised short-hand for these sorts of annotations.</p> <p>HTML is basically the web's standard mark-up language, but it's rather verbose. </p> <p>A list in HTML:</p> <pre><code>&lt;ul&gt; &lt;li&gt;Item one&lt;/li&gt; &lt;li&gt;Item two&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>Markdown is a specific markup language, having its own simple syntax. </p> <p>A list in Markdown:</p> <pre><code>* Item one * Item two </code></pre> <p>Both of these will work in your stackoverflow posts.</p> <p>Markdown can't do everything HTML can, but both are mark-up languages.</p> http://stackoverflow.com/questions/24041/markdown-vs-markup-are-they-related/25891#25891 0 Answer by Ross for Markdown vs markup - are they related? Ross 2008-08-25T11:41:26Z 2008-08-25T11:41:26Z <p>Markup is a general term for content formatting - such as HTML - but markdown is a library that generates HTML markup. Take a look at <a href="http://daringfireball.net/projects/markdown/" rel="nofollow">Markdown</a>.</p> http://stackoverflow.com/questions/24041/markdown-vs-markup-are-they-related/855665#855665 0 Answer by Oddmund for Markdown vs markup - are they related? Oddmund 2009-05-13T01:27:05Z 2009-05-13T01:27:05Z <p>Markdown and the markup used in Mediawiki (the wiki software that powers Wikipedia) is not the same.</p> <p>They're related in the sense that both are less verbose ways of entering html (with some added features), but I doubt that they are related to each other in any other sense.</p> <p>If you want to implement Markdown on your site just Google Markdown + your favourite platform/language and you'll likely to find a library that does it for you.</p> <p>If you want to implement Mediawiki's markup you probably need to look round for better ones (like Markdown).</p>