docs/changelog.md in maruku-0.5.0 vs docs/changelog.md in maruku-0.5.1

- old
+ new

@@ -1,7 +1,8 @@ CSS: style.css LaTeX CJK: true +HTML use syntax: true #### Changes in the development version and **experimental** features #### {#last} [Jacques Distler]: http://golem.ph.utexas.edu/~distler [itex2MML]: http://golem.ph.utexas.edu/~distler/blog/itex2MML.html @@ -57,10 +58,39 @@ * Created the embryo of an extension system. Please don't use it yet, as probably the API is bound to change. * There are a couple of hidden features... -#### Changes in 0.5.0 #### {#stable} + +#### Changes in 0.5.1 #### {#stable} + +* Bug fixes: + + * Workaround for Internet Explorer bug: + be very sure that `&apos;` is always written as `&#39;`. + + * Support for empty images ref: `![image]` and `![image][]`. + + * Fixed bug in parsing attribute lists definitions. + +* Minor things: + + * Now code blocks are written as a `<code>` element inside a `<pre>`, and + `<code>` elements have both `class` and `lang` attributes set + to the specified language. + + Example: + + Example + {:lang=ruby} + {:lang=markdown} + + produces: + + <pre><code class='ruby' lang='ruby'>Example</code></pre> + {:lang=xml} + +#### Changes in 0.5.0 #### * Syntax changes: * Compatibility with newest Markdown.pl: `[text]` as a synonim of `[text][]`.