<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Faster blogging through Markdown</title>
	<atom:link href="http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/feed/" rel="self" type="application/rss+xml" />
	<link>http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/</link>
	<description>Weblog Tools Blogging Tools Blog</description>
	<pubDate>Thu, 08 Jan 2009 18:54:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Ryan B</title>
		<link>http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1158141</link>
		<dc:creator>Ryan B</dc:creator>
		<pubDate>Mon, 16 Apr 2007 19:27:39 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1158141</guid>
		<description>I was all for this when I saw this plugin. I am not the world's fastest typer and don't always trust the RTE. But the way some things are done make me uneasy.
As somebody else said, you have to stick with this for life. People (who don't know the syntax) will get the dashes for lists but will get confused with the bold and italic markings.</description>
		<content:encoded><![CDATA[<p>I was all for this when I saw this plugin. I am not the world&#8217;s fastest typer and don&#8217;t always trust the RTE. But the way some things are done make me uneasy.<br />
As somebody else said, you have to stick with this for life. People (who don&#8217;t know the syntax) will get the dashes for lists but will get confused with the bold and italic markings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rudd-O</title>
		<link>http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157941</link>
		<dc:creator>Rudd-O</dc:creator>
		<pubDate>Fri, 13 Apr 2007 09:18:57 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157941</guid>
		<description>Well, from my point of view, Markdown is pretty good.  The cheat sheet for markdown fits in one screenful, while ... have you ever seen a cheat sheet for HTML?  HTML authors also run the risk of writing invalid HTML.  And the greater-than/less-than signs are definitely in an awkward spot on the keyboard.</description>
		<content:encoded><![CDATA[<p>Well, from my point of view, Markdown is pretty good.  The cheat sheet for markdown fits in one screenful, while &#8230; have you ever seen a cheat sheet for HTML?  HTML authors also run the risk of writing invalid HTML.  And the greater-than/less-than signs are definitely in an awkward spot on the keyboard.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Russell</title>
		<link>http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157913</link>
		<dc:creator>David Russell</dc:creator>
		<pubDate>Thu, 12 Apr 2007 22:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157913</guid>
		<description>Any theoretical speed advantages of using this are outweighed by the speed disadvantage of having to learn an entirely new markup system. I can look at basic (X)HTML formatting and tell you what the end result will look like - I couldn't make the same promise for Textile or Markdown.

Besides which, LiewCF's point stands: you are locked into using this plugin, and Wordpress, for the rest of your life (or at least, the lifetime of your blog). Sure, Markdown-formatted posts presented without the Markdown plugin will be readable, but they will lose all formatting (therefore one is less likely to &lt;em&gt;want&lt;/em&gt; to read them).</description>
		<content:encoded><![CDATA[<p>Any theoretical speed advantages of using this are outweighed by the speed disadvantage of having to learn an entirely new markup system. I can look at basic (X)HTML formatting and tell you what the end result will look like - I couldn&#8217;t make the same promise for Textile or Markdown.</p>
<p>Besides which, LiewCF&#8217;s point stands: you are locked into using this plugin, and Wordpress, for the rest of your life (or at least, the lifetime of your blog). Sure, Markdown-formatted posts presented without the Markdown plugin will be readable, but they will lose all formatting (therefore one is less likely to <em>want</em> to read them).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: m0n5t3r</title>
		<link>http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157904</link>
		<dc:creator>m0n5t3r</dc:creator>
		<pubDate>Thu, 12 Apr 2007 20:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157904</guid>
		<description>unfortunately, Markdown is not a very good choice... or I've only met bad parsers until now (including the one at wordpress.org/extend/plugins):
 * the way it uses indentation is inconsistent (you _may_ indent your lists, and I'd rather do that because it improves readability, but then you risk having them identified as code) 
 * the formatting syntax is reasonable (I've seen much worse), but quite not at the level of elegance the Trac/MoinMoin wiki syntax has 
 * the url syntax looks funny
 * lists formatted like this one are parsed into a total mess (again bad indentation processing)
 * poor nested list support (have to change the marker, instead of simply indenting stuff at the appropriate level, and then can't really indent things to make things visible because of the 4-space-indent-means-code thing...)

Oh, and of course, once you've chosen one of these alternative markups you would have to stick with them... or get a smart plugin that can tell the difference (textcontrol should do, it has a per-post custom field that tells it what to employ for rendering, it would be hard to automatically determine whether a bunch of text is Markdown, Textile 1 or 2, HTML or some wiki-style syntax)

Maybe I'm too much affected by the Python mindset about the indentation thing and the decision to make Markdown like it is now was actually reached after a lot of thinking (&#60;troll&#62; a lot of drinking and a lot of thinking&#60;/troll&#62;).</description>
		<content:encoded><![CDATA[<p>unfortunately, Markdown is not a very good choice&#8230; or I&#8217;ve only met bad parsers until now (including the one at wordpress.org/extend/plugins):<br />
 * the way it uses indentation is inconsistent (you _may_ indent your lists, and I&#8217;d rather do that because it improves readability, but then you risk having them identified as code)<br />
 * the formatting syntax is reasonable (I&#8217;ve seen much worse), but quite not at the level of elegance the Trac/MoinMoin wiki syntax has<br />
 * the url syntax looks funny<br />
 * lists formatted like this one are parsed into a total mess (again bad indentation processing)<br />
 * poor nested list support (have to change the marker, instead of simply indenting stuff at the appropriate level, and then can&#8217;t really indent things to make things visible because of the 4-space-indent-means-code thing&#8230;)</p>
<p>Oh, and of course, once you&#8217;ve chosen one of these alternative markups you would have to stick with them&#8230; or get a smart plugin that can tell the difference (textcontrol should do, it has a per-post custom field that tells it what to employ for rendering, it would be hard to automatically determine whether a bunch of text is Markdown, Textile 1 or 2, HTML or some wiki-style syntax)</p>
<p>Maybe I&#8217;m too much affected by the Python mindset about the indentation thing and the decision to make Markdown like it is now was actually reached after a lot of thinking (&lt;troll&gt; a lot of drinking and a lot of thinking&lt;/troll&gt;).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben M</title>
		<link>http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157881</link>
		<dc:creator>Ben M</dc:creator>
		<pubDate>Thu, 12 Apr 2007 15:59:03 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157881</guid>
		<description>Too bad the link above is for the version bundled with Turbocharged.  Almost all of the Turbocharged plugins are available for free from the developers' websites, such as Markdown at &lt;a href="http://www.michelf.com/projects/php-markdown/" rel="nofollow"&gt;michelf.com&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Too bad the link above is for the version bundled with Turbocharged.  Almost all of the Turbocharged plugins are available for free from the developers&#8217; websites, such as Markdown at <a href="http://www.michelf.com/projects/php-markdown/">michelf.com</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LuckyLily</title>
		<link>http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157874</link>
		<dc:creator>LuckyLily</dc:creator>
		<pubDate>Thu, 12 Apr 2007 14:17:23 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157874</guid>
		<description>this look like a useful plugin, just hope things could b much more easier than this....in dealing with html...of course..</description>
		<content:encoded><![CDATA[<p>this look like a useful plugin, just hope things could b much more easier than this&#8230;.in dealing with html&#8230;of course..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shayne Power</title>
		<link>http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157850</link>
		<dc:creator>Shayne Power</dc:creator>
		<pubDate>Thu, 12 Apr 2007 08:29:43 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157850</guid>
		<description>I disagree. While it might look a little strange if you have the plugin turned off, it is definitely _not_ unreadable. In face, that is the whole point of markdown.

From [daringfireball.net][1]:

&#62; 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. While Markdownâ€™s syntax has been influenced by several existing text-to-HTML filters, the single biggest source of inspiration for Markdownâ€™s syntax is the format of plain text email.

I am assuming that you were able to read this post, marked (down, not up) completely in markdown syntax.

[1]: http://daringfireball.net/projects/markdown/</description>
		<content:encoded><![CDATA[<p>I disagree. While it might look a little strange if you have the plugin turned off, it is definitely _not_ unreadable. In face, that is the whole point of markdown.</p>
<p>From [daringfireball.net][1]:</p>
<p>&gt; 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. While Markdownâ€™s syntax has been influenced by several existing text-to-HTML filters, the single biggest source of inspiration for Markdownâ€™s syntax is the format of plain text email.</p>
<p>I am assuming that you were able to read this post, marked (down, not up) completely in markdown syntax.</p>
<p>[1]: <a href="http://daringfireball.net/projects/markdown/">http://daringfireball.net/projects/markdown/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LiewCF</title>
		<link>http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157821</link>
		<dc:creator>LiewCF</dc:creator>
		<pubDate>Thu, 12 Apr 2007 05:55:07 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2007/04/11/faster-blogging-through-markdown/#comment-1157821</guid>
		<description>one of the reasons I do not use this kind of plugin is because my blog have to stick with it in the rest of the lifetime. Else, the post is unreadable.</description>
		<content:encoded><![CDATA[<p>one of the reasons I do not use this kind of plugin is because my blog have to stick with it in the rest of the lifetime. Else, the post is unreadable.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
