<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Excursus &#187; Markdown</title>
	<atom:link href="http://markelikalderon.com/category/markup/markdown/feed/" rel="self" type="application/rss+xml" />
	<link>http://markelikalderon.com</link>
	<description>Philosophy and Text</description>
	<lastBuildDate>Tue, 27 Dec 2011 23:01:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Markdown Plugin for Eclipse</title>
		<link>http://markelikalderon.com/2008/07/17/mardown-plugin-for-eclipse/</link>
		<comments>http://markelikalderon.com/2008/07/17/mardown-plugin-for-eclipse/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 14:51:38 +0000</pubDate>
		<dc:creator>Mark Eli Kalderon</dc:creator>
				<category><![CDATA[Markdown]]></category>

		<guid isPermaLink="false">http://markelikalderon.com/blog/2008/07/17/mardown-plugin-for-eclipse/</guid>
		<description><![CDATA[Daniel Winterstein has just released a new version of his Markdown plugin for Eclipse. From the Markdown mailing list: There&#8217;s syntax highlighting, a preview window, and it can export to html. The best feature is the document outline, which is a joy for editing large documents. Plus you can use TODO tags and these get [...]]]></description>
			<content:encoded><![CDATA[<p>Daniel Winterstein has just released a new version of his <a href="http://winterwell.com/software/markdown-editor.php">Markdown plugin</a> for <a href="http://www.eclipse.org/" title="Eclipse.org home">Eclipse</a>. From the <a href="http://daringfireball.net/projects/markdown/" title="Daring Fireball: Markdown">Markdown</a> mailing list:</p>

<blockquote>
  <p>There&#8217;s syntax highlighting, a preview window, and it can export to html. The best feature is the document outline, which is a joy for editing large documents. Plus you can use TODO tags and these get picked up as tasks, and an emacs-style text formatting tool.</p>
</blockquote>

<p>If IDEs are your thing and you are using Eclipse, you might want to check it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://markelikalderon.com/2008/07/17/mardown-plugin-for-eclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plain Text Notes and Message URLs in Leopard</title>
		<link>http://markelikalderon.com/2008/02/01/plain-text-notes-and-message-urls-in-leopard/</link>
		<comments>http://markelikalderon.com/2008/02/01/plain-text-notes-and-message-urls-in-leopard/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 18:48:14 +0000</pubDate>
		<dc:creator>Mark Eli Kalderon</dc:creator>
				<category><![CDATA[Markdown]]></category>
		<category><![CDATA[Markup]]></category>
		<category><![CDATA[Text]]></category>
		<category><![CDATA[Text Editor]]></category>
		<category><![CDATA[TextMate]]></category>

		<guid isPermaLink="false">http://markelikalderon.com/blog/2008/02/01/plain-text-notes-and-message-urls-in-leopard/</guid>
		<description><![CDATA[Leopard has a small feature that I have often longed for. All my notes are text files in markdown format. URI schemes extend the usefulness of the medium. With the file URI scheme I can link to other files, and with the mailto URI scheme I can send emails. But one thing that I have [...]]]></description>
			<content:encoded><![CDATA[<p>Leopard has a small feature that I have often longed for. All my notes are text files in <a href="http://daringfireball.net/projects/markdown/" title="Daring Fireball: Markdown">markdown</a> format. <a href="http://en.wikipedia.org/wiki/URI_scheme" title="URI scheme - Wikipedia, the free encyclopedia">URI schemes</a> extend the usefulness of the medium. With the file URI scheme I can link to other files, and with the mailto URI scheme I can send emails. But one thing that I have wanted to do is link to a specific email (in case that it has information that I may need to refer to). Leopard has introduced a new message URI scheme that allows you to do just that. (Though why they did not implement the mid URI scheme for this purpose remains a mystery.) Marc Liyanage has a <a href="http://www.entropy.ch/blog/Mac+OS+X/2007/12/04/Copy-Message-URLs-AppleScript-for-Apple-Mail.html">post</a> about it, and John Gruber has a <a href="http://daringfireball.net/2007/12/message_urls_leopard_mail">post</a> with more details. A URL for a particular email has two parts:</p>

<ol>
<li>the message URI</li>
<li>the message id wrapped in angle brackets</li>
</ol>

<p>Message URLs can take any of the following syntactic forms:</p>

<pre><code>message:%3cmessage_id%3e 
message://%3cmessage_id%3e 
message:&lt;message_id&gt; 
message://&lt;message_id&gt;
</code></pre>

<p>Both Liyanage and Gruber provide <a href="http://www.apple.com/applescript/" title="AppleScript: The Language of Automation">applescripts</a> for retrieving the message id of a given email saving the message URL to the pasteboard. Gruber&#8217;s applescript is as follows:</p>

<pre><code>tell application "Mail"
    set _sel to get selection
    set _links to {}
    repeat with _msg in _sel
        set _messageURL to "message://%3c" &amp; _msg's message id &amp; "%3e"
        set end of _links to _messageURL
    end repeat
    set AppleScript's text item delimiters to return
    set the clipboard to (_links as string)
end tell
</code></pre>

<p>When saved in</p>

<pre><code>~/Library/Scripts/Applications/Mail/
</code></pre>

<p>it will appear in the script menu when Mail.app is in focus. Just select the target mail and run the script and the mail URL will be in your pasteboard ready to paste into your textfile. And if you are a keyboard fanatic who eschews the mouse wherever possible, you can use <a href="http://docs.blacktree.com/quicksilver/what_is_quicksilver">Quicksilver</a> to run the applescript. If your text file is in markdown format, simply enclose the message URL in angle brackets.</p>

<p>Having the ability to link to pertinent emails really increases the usefulness of plain text notes. More so if your text editor will launch the URL for you. In <a href="http://macromates.com/" title="TextMate — The Missing Editor for Mac OS X">TextMate</a>, simply move the cursor over the URL and hit &#x2305;. Another small step in harnessing the <a href="http://markelikalderon.com/blog/2006/10/25/plain-text/">power of plain text</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://markelikalderon.com/2008/02/01/plain-text-notes-and-message-urls-in-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WMD</title>
		<link>http://markelikalderon.com/2007/06/08/wmd/</link>
		<comments>http://markelikalderon.com/2007/06/08/wmd/#comments</comments>
		<pubDate>Fri, 08 Jun 2007 22:49:22 +0000</pubDate>
		<dc:creator>Mark Eli Kalderon</dc:creator>
				<category><![CDATA[Markdown]]></category>
		<category><![CDATA[Markup]]></category>
		<category><![CDATA[Text]]></category>

		<guid isPermaLink="false">http://markelikalderon.com/blog/2007/06/08/wmd/</guid>
		<description><![CDATA[Not Weapons of Mass Destruction, nor even Word and the North Korean Missile Crisis, but Wysiwym MarkDown editor. As discussed in a previous post Mardown is an edge case of markup. A marked-up document contains: text information about that text A markup language determines: what markup is allowed what markup is required how the markup [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://markelikalderon.com/wp-content/uploads/2007/06/images.jpg' alt='images.jpg' /></p>

<p>Not Weapons of Mass Destruction, nor even <a href="http://markelikalderon.com/blog/2007/04/19/word-and-the-north-korean-missile-crisis/">Word and the North Korean Missile Crisis</a>, but <a href="http://wmd-editor.com/">Wysiwym MarkDown editor</a>.</p>

<p>As discussed in a previous <a href="http://markelikalderon.com/blog/2006/10/10/whats-the-opposite-of-markup/">post</a> <a href="http://daringfireball.net/projects/markdown/">Mardown</a> is an edge case of markup. A marked-up document contains:</p>

<ul>
<li>text</li>
<li>information about that text</li>
</ul>

<p>A markup language determines:</p>

<ol>
<li>what markup is allowed</li>
<li>what markup is required</li>
<li>how the markup is explicitly distinguished from the text</li>
<li>what the markup means</li>
</ol>

<p>The problem, of course, is with the third requirement. So much of Markdown is implicitly determined that it fails to determine how the markup is <em>explicitly</em> distinguished from the text. The very name is an ironic tribute to this feature&#8212;what&#8217;s the opposite of markup? Markdown!</p>

<p>Nevertheless, this &#8220;plain text formatting syntax&#8221;, though not strictly speaking a markup language, can serve as a gentle introduction to markup languages for the uninitiated. It can so serve since the goal of Markdown was to be human readable and hence to be immediately familiar and accessible:</p>

<blockquote>
  <p>The overriding design goal for Markdown’s formatting syntax is to make it as readable as possible. The idea is that a Markdown-formatted document should be publishable as-is, as plain text, without looking like it’s been marked up with tags or formatting instructions.</p>
</blockquote>

<p>WMD threatens to blur the boundry even further. Just as there is a distinction between information about the text being implicitly and explicitly determined, there is a distinction between visually editing this information, structurally editing this information with explicit markup. Information about the text can be visually edited, say, by bolding headers in a rich text editor. A visual element of the text, the boldface, carries implicit information about that text&#8212;that <em>headers</em> are in boldface. Visually editing is introducing implicit information about the text by editing the visual elements of that text. This could rather be represented by explicit markup, in which case one would be structurally editing the text. Editing your text with Markdown, while not explicit markup, is an edge case of structural editing. WMD streatches this further by offering a <a href="http://en.wikipedia.org/wiki/WYSIWYM" title="WYSIWYM - Wikipedia, the free encyclopedia">Wysiwym</a> (What You See Is What You Mean) editor that produces either Markdown or HTML.</p>

<p>Intrigued by markup, but too shy to dip your toe? <a href="http://wmd-editor.com/">WMD</a> may be for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://markelikalderon.com/2007/06/08/wmd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Double Spacing, Publishing, and Zombies</title>
		<link>http://markelikalderon.com/2007/03/17/double-spacing-publishing-and-zombies/</link>
		<comments>http://markelikalderon.com/2007/03/17/double-spacing-publishing-and-zombies/#comments</comments>
		<pubDate>Sat, 17 Mar 2007 00:07:21 +0000</pubDate>
		<dc:creator>Mark Eli Kalderon</dc:creator>
				<category><![CDATA[Double Spacing]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Markdown]]></category>
		<category><![CDATA[Markup]]></category>
		<category><![CDATA[Undead]]></category>

		<guid isPermaLink="false">http://markelikalderon.com/blog/2007/03/17/double-spacing-publishing-and-zombies/</guid>
		<description><![CDATA[Once upon a time, authors would send their manuscripts to their publisher where a copy editor would mark up the manuscript with instructions for the typesetter. (The origin, by the way, of the modern conception of a markup language such as HTML, LaTeX, or Markdown&#8212;if, indeed, it is one). This was only feasible if the [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://markelikalderon.com/wp-content/uploads/2007/03/night_of_the_living_dead.jpg' title='Night of the Living Dead'><img src='http://markelikalderon.com/wp-content/uploads/2007/03/night_of_the_living_dead.jpg' alt='Night of the Living Dead' /></a></p>

<p>Once upon a time, authors would send their manuscripts to their publisher where a copy editor would mark up the manuscript with instructions for the typesetter. (The origin, by the way, of the modern conception of a markup language such as HTML, LaTeX, or Markdown&#8212;<a href="http://markelikalderon.com/blog/2006/10/10/whats-the-opposite-of-markup/">if, indeed, it is one</a>). This was only feasible if the submitted manuscript was double spaced, thus allowing adequate space for the instructions for the typesetter. This was <em>before</em> electronic submissions of manuscripts and <em>before</em> computer typesetting.</p>

<p>Some conventions persist beyond their utility, and the dead continue to walk the earth.</p>

<p>Academics, at least, are familiar with this species of the undead. Journals regularly require that paper submissions be double spaced. Just to be clear, these are submissions for consideration for publication that are sent to internal or external referees. The referees read the submission and pass on their comments to the editor who renders a judgment as to whether the submission is publishable in such an estimable journal. Referees do not write their comments on the manuscript the way copy editors used to mark up manuscripts&#8212;so why the required double spacing?</p>

<p>Not only does this practice lack utility, it has positive disutility. Typesetting is not, or at least not merely, an aesthetic concern; it has genuine cognitive import. Good typesetting allows the reader to better understand the text. Double spaced manuscripts are <em>harder</em> to read than single spaced texts. Since the manuscript is being read by a referee whose opinion the editor is relying upon in passing judgment, shouldn&#8217;t the submitted manuscript be as easy to read as possible?</p>

<p>And yet the dead continue to haunt the living. Like the practice of typing two spaces after a period, some conventions just won&#8217;t die. I have tried passive aggression (submitting single spaced manuscripts), I have tried active aggression (complaining about senseless anachronistic publishing practices), but when all else fails, you just have to pony up the double spaced manuscript.</p>

<p>If your manuscript is written in LaTeX, it may be unobvious how to achieve this. Fortunately, the <a href="ftp://cam.ctan.org/tex-archive/macros/latex/contrib/setspace/setspace.sty">setspace</a> package can help. It is smart enough to double space the main body of text but not, say, the footnotes. Look within the package file, setpsace.sty, for instructions.</p>

<p>Submit your double spaced manuscript, if you must. But do so under protest. Life is for the living.</p>
]]></content:encoded>
			<wfw:commentRss>http://markelikalderon.com/2007/03/17/double-spacing-publishing-and-zombies/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>BBEdit 8.6 Update</title>
		<link>http://markelikalderon.com/2007/01/25/bbedit-86-update/</link>
		<comments>http://markelikalderon.com/2007/01/25/bbedit-86-update/#comments</comments>
		<pubDate>Thu, 25 Jan 2007 14:26:14 +0000</pubDate>
		<dc:creator>Mark Eli Kalderon</dc:creator>
				<category><![CDATA[BBEdit]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Markdown]]></category>
		<category><![CDATA[Text]]></category>
		<category><![CDATA[Text Editor]]></category>
		<category><![CDATA[TextMate]]></category>
		<category><![CDATA[TextWrangler]]></category>

		<guid isPermaLink="false">http://markelikalderon.com/blog/blog/2007/01/25/bbedit-86-update/</guid>
		<description><![CDATA[Good news for text-editing writers on the OS X platform. The venerable Mac text editor BBEdit has released an update which includes native Markdown support and improved TeX support. From the release notes: The Markdown language module now supports syntax coloring. If you choose &#8220;Preview in BBEdit&#8221; when a Markdown source file is in front, [...]]]></description>
			<content:encoded><![CDATA[<p>Good news for text-editing writers on the OS X platform. The venerable Mac text editor <a href="http://www.barebones.com/">BBEdit</a> has released an update which includes native <a href="http://daringfireball.net/projects/markdown/">Markdown</a> support and improved TeX support. From the release notes:</p>

<blockquote>
  <ul>
  <li><p>The Markdown language module now supports syntax coloring.</p></li>
  <li><p>If you choose &#8220;Preview in BBEdit&#8221; when a Markdown source file is in front, BBEdit will run your Markdown source through the Markdown script, and so your preview reflects what the file will look like in a web browser. Like the previews of HTML source files, the Markdown preview will update as you edit the file.</p></li>
  <li><p>The TeX language module has been significantly enhanced, with folding support, improved section/subsection detection for the function menu, much more robust math-mode detection, and greatly enhanced LaTeX support. These changes resolve various reported bugs, as well. If you wish to place a &#8220;marker&#8221; in the function menu, you can write a comment of the following form: %: this is a mark. This comment syntax matches that used by TeXShop. The new TeX module also includes some support for ConTeXt, in the form of recognition and generation of fold ranges for \startXXX&#8230;\stopXXX environments, and special-case support for the &#8220;mode&#8221; environment (we ignore the contents of the mode environment, because it often contains out-of-order environment start/stop commands which can confuse the parser).</p></li>
  </ul>
</blockquote>

<p>I would have <em>loved</em> native Markdown support when I was using <a href="http://www.barebones.com/">BBEdit</a>. This is one feature that initially attracted me to <a href="http://macromates.com/">TextMate</a>. The native <a href="http://daringfireball.net/projects/markdown/">Markdown</a> and improved TeX support has also been implemented in <a href="http://www.barebones.com/">BBEdit</a>&#8217;s free cousin, <a href="http://www.barebones.com/products/textwrangler/">TextWrangler</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://markelikalderon.com/2007/01/25/bbedit-86-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instiki and SmartyPants</title>
		<link>http://markelikalderon.com/2006/10/26/instiki-and-smartypants/</link>
		<comments>http://markelikalderon.com/2006/10/26/instiki-and-smartypants/#comments</comments>
		<pubDate>Thu, 26 Oct 2006 15:00:06 +0000</pubDate>
		<dc:creator>Mark Eli Kalderon</dc:creator>
				<category><![CDATA[Instiki]]></category>
		<category><![CDATA[Markdown]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[SmartyPants]]></category>

		<guid isPermaLink="false">http://markelikalderon.com/blog/2006/10/26/instiki-and-smartypants/</guid>
		<description><![CDATA[Dr. Drang recently posted about adding SmartyPants to Instiki. I like both these tools, but I ran into a few snags, so I thought I would post some updated instructions. For those who don&#8217;t know, Instiki is a wiki clone based on Ruby on Rails. Very easy to install and use. One virtue of Instiki [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.leancrew.com/all-this/">Dr. Drang</a> recently <a href="http://www.leancrew.com/all-this/2006/10/adding_smartypants_to_instiki.html">posted</a> about adding SmartyPants to Instiki. I like both these tools, but I ran into a few snags, so I thought I would post some updated instructions.</p>

<p>For those who don&#8217;t know, Instiki is a wiki clone based on Ruby on Rails. Very easy to install and use. One virtue of Instiki is that it has the option of using <a href="http://daringfireball.net/projects/markdown/">Markdown</a>, a lightweight markup language. (<a href="http://markelikalderon.com/blog/2006/10/10/whats-the-opposite-of-markup/">Or is it?</a>). It can be used locally and is a handy way to organize notes.</p>

<p><a href="http://daringfireball.net/projects/smartypants/">Smartypants</a> is a companion project to Markdown. It translates ASCII punctuation characters into &#8216;smart&#8217; typographic punctuation. (After all, you want to be typographically correct, don&#8217;t you?)</p>

<p>The first problem is that the Instiki.org site seems no longer to exist. I was worried that Instiki was no more. Fortunately, after some searching, I found that Instiki can be downloaded <a href="http://rubyforge.org/frs/?group_id=186">here</a>. There are a number of download options. The easiest for OS X users is instiki-0.10.2.dmg. Mount the dmg and drag Instiki.app to your Applications folder and your done.</p>

<p>You don&#8217;t need Ruby or Rails installed to run Instiki.app, all these files are contained locally. But that means you need to access the contents of Instiki.app to make Dr. Drang&#8217;s modifications. The file bluecloth_tweaked.rb can be found in the following directory:</p>

<pre><code>/Applications/Instiki.app/Contents/Resources/rb_src/lib
</code></pre>

<p>Open that file in your favorite text editor and add</p>

<pre><code>require 'rubypants'
</code></pre>

<p>near the top of the file with the other require lines. Towards the bottom of the to_html method add either:</p>

<pre><code>text = RubyPants.new( text, 1).to_html()   
</code></pre>

<p>or:</p>

<pre><code>text = RubyPants.new( text ).to_html()   
</code></pre>

<p>The former will give you em dashes with two hyphens. The latter will give you em dashes with three hyphens. I prefer the latter convention to the former and not just because it is the TeX convention. On the latter convention two hyphens gives you en dashes, whereas the former convention cannot represent these. And since hyphens, en dashes, and em dashes are progressively longer, it makes sense that they be represented by one, two, and three consecutive hypens respectively</p>

<p>One more modification is necessary. You need to install RubyPants in the the same directory as bluecloth_tweaked.rb. RubyPants is the Ruby implementation of SmartyPants. It can be downloaded <a href="http://chneukirchen.org/blog/static/projects/rubypants.html">here</a>. Untar the file by double clicking it, and move the file rubypants.rb to:</p>

<pre><code>/Applications/Instiki.app/Contents/Resources/rb_src/lib
</code></pre>

<p>Restart Instiki.app and now all your notes will be typographically correct. Thanks Dr. Drang!</p>
]]></content:encoded>
			<wfw:commentRss>http://markelikalderon.com/2006/10/26/instiki-and-smartypants/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s the Opposite of Markup?</title>
		<link>http://markelikalderon.com/2006/10/10/whats-the-opposite-of-markup/</link>
		<comments>http://markelikalderon.com/2006/10/10/whats-the-opposite-of-markup/#comments</comments>
		<pubDate>Tue, 10 Oct 2006 15:22:18 +0000</pubDate>
		<dc:creator>Mark Eli Kalderon</dc:creator>
				<category><![CDATA[Markdown]]></category>

		<guid isPermaLink="false">http://markelikalderon.com/blog/2006/10/10/whats-the-opposite-of-markup/</guid>
		<description><![CDATA[Markdown is a lightweight markup language. Or is it? I use Markdown everyday. All my notes are in Markdown, I write the first drafts of my papers in Markdown (then converting them to LaTeX), and, thanks to Michael Fortrin’s plugin, I am blogging in Markdown. Part of its utility is its transparency. It gets out [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://daringfireball.net/projects/markdown/">Markdown</a> is a lightweight markup language. Or is it?</p>

<p>I use Markdown everyday. All my notes are in Markdown, I write the first drafts of my papers in Markdown (then converting them to LaTeX), and, thanks to <a href="http://www.michelf.com/">Michael Fortrin</a>’s <a href="http://www.michelf.com/projects/php-markdown/">plugin</a>, I am blogging in Markdown. Part of its utility is its transparency. It gets out of your way and let&#8217;s you focus on content.</p>

<p>Ironically, it is this very virtue that prevents it from being a markup language properly so called. In an insightful <a href="http://six.pairlist.net/pipermail/markdown-discuss/2006-October/000301.html">exchange</a> on the Markdown mailing list, Allan Odgaard, the developer of <a href="http://www.macromates.com/">TextMate</a>, writes:</p>

<blockquote>
  <p>I also wonder if JG views Markdown as a markup language seeing how a lot of  constructs are not exactly based on explicit markup.</p>
</blockquote>

<p>John Gruber, the developer of Markdown, confirms Allan&#8217;s suspicion:</p>

<blockquote>
  <p>Funny, but true. I don&#8217;t really have a strong opinion about what &#8220;markup language&#8221; means, but when I was trying to decide what to call it, I thought to myself, &#8220;Well, it&#8217;s not a markup language, because the most important rules are implicit, so what would be the opposite of &#8216;markup&#8217;?&#8230;</p>
</blockquote>

<p>Markdown, of course. Revealingly, on the Markdown <a href="http://daringfireball.net/projects/markdown/">website</a>, John doesn&#8217;t describe Markdown as a markup language but as a &#8216;plain text formatting system&#8217;.</p>
]]></content:encoded>
			<wfw:commentRss>http://markelikalderon.com/2006/10/10/whats-the-opposite-of-markup/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

