Closed wagnerflo closed 7 years ago
this is brilliant. thank you so much. @wagnerflo please, feel free to add yourself to the list of contributors, and tell me if you are planning more improvements. I would like to release a new version when you consider appropriate.
In the other hand, one issue that would be nice to fix in the next release (particularly important for deployments with medium-high load like http://python.org.ar) is #134. I wonder if you may be interested in looking at it.
As far as necessary to get the project I'm using Waliki in to a finished state I will continue contributing. Starting next week the frequency will probably drop quite a bit as other tasks will have to take priority.
For a decision when to do a release I currently have no opinion, but I do have a few functions to complete and test for my project that might turn up points of improvement or bugs.
I'll see about #134. That seems to be quite important and not very hard.
Currently the restructuredText markup implements Autolinks by parsing and modifiying the generated HTML. This implementation is...
Writer
class only. This allows dropping the dependency onpyquery
and is surly much more efficient.Buggy:
A comment in the code promises that embedded URIs would also be turned into links to the wiki. This also doesn't work and - by my understanding of the specs - should only work in the case of the embedded URI being a internal target. As in:
This implementation fixes all these problems which should be made clear by the tests I've added. It is based heavily on code from MoinMoin.
It includes the commit from #143 dropping the bundled
rst2html5.py
since theWalikiHTML5Writer
class derives from the external package'sHTML5Writer
.