update README

This commit is contained in:
Michael Teichgräber 2010-12-13 20:48:33 +01:00
parent 54f4f31312
commit b3f7b37771

View File

@ -14,13 +14,11 @@ Support for HTML output is implemented, but Groff and LaTeX
output have not been ported. The output should be identical output have not been ported. The output should be identical
to that of peg-markdown. to that of peg-markdown.
The Go version is around 5x slower than the original C The Go version is around 3.5x slower than the original C
version. A marked speed improvement has been achieved by version. A marked speed improvement has been achieved by
converting function `preformat` from concatenating strings converting function `preformat` from concatenating strings
to using bytes.Buffer. At other places, where this kind of to using bytes.Buffer. At other places, where this kind of
modification had been tried, performance did not improve. Also, modification had been tried, performance did not improve.
pre-allocating a large buffer for `element`s didn't show a
significant difference from allocating `element`s one at a time.
## Installation ## Installation
@ -98,7 +96,7 @@ As definition item markers both `:` and `~` can be used.
## Todo ## Todo
* Implement definition lists (work in progress), and perhaps tables * Implement tables
* Rename element key identifiers, so that they are not public * Rename element key identifiers, so that they are not public