CarterA / Tribo

Extremely fast static site generator written in Objective-C
http://cartera.me/2011/10/16/made-on-a-mac/
Other
42 stars 6 forks source link

Markdown parser does not support link title attribute #40

Open GeorgeWS opened 11 years ago

GeorgeWS commented 11 years ago

This: This is [an example](http://example.com/ "Title") inline link.

Should produce: This is <a href="http://example.com/" title="Title"> an example</a> inline link.

But instead, produces: This is <a href="http://example.com/%20&ldquo;Title&rdquo;"> an example</a> inline link.

See: http://daringfireball.net/projects/markdown/syntax#link

Tanner commented 11 years ago

Sounds like a issue for Sundown (which Tribo uses a fork of).