# Mmark Updates


Recent [bug reports](https://github.com/miekg/mmark/issues) prompted some Mmark development (guess
I am into bug-driven development). New releases can [be found on
Github](https://github.com/miekg/mmark/releases). Anyway Mmark saw some bug fixes and new features:

A feature/pull request from *blackfriday* got merged, meaning that two different lists are *not*
merged into one:

~~~ markdown
* A
* B

1. One
2. Two
~~~

Is now correctly seen as two different lists.

Further more a `<br/>` is converted to a `<vspace/>` in the XML output. This is especially
useful when you want a vertical space after a definition term. See `rfc/rfc7511.md` for an example
on how to use this.

And when including markdown files you can specify a from-to address to tell Mmark
*what* to include. This is identical to how you can include [code
 fragments](https://github.com/miekg/mmark/wiki/Syntax#including-code-fragments).

And finally the were some bugfixes and code improvements and the [syntax
document](https://github.com/miekg/mmark/wiki/Syntax) saw some improvements.

