summaryrefslogtreecommitdiff
path: root/web
AgeCommit message (Collapse)AuthorFilesLines
2021-12-11Make the Rust garbage compile againYorhel1-44/+16
2019-05-25Rust dep updatesYorhel3-53/+30
2018-03-25web: Updating Cargo deps + fixes for stableYorhel3-65/+44
2017-01-16Support bold+italic in HTML conversionYorhel1-16/+43
2017-01-15A few more HTML conversion improvementsYorhel1-3/+16
- Fix segfault on empty output (bug was in XS code) - Still better end-of-URL detection - Recognize a few common multicharacter sections in man references
2017-01-15Whole bunch of HTML conversion improvementsYorhel1-43/+46
- Grotty escape sequences are now better interpreted. I feel rather stupid for not realizing the idea behind how those codes are supposed to work earlier. It finally hit me when I read the BSD ul(1) source code. - URL end detection is slightly better (much better than the old C code) - Man page references with : are recognized now (common in Perl modules). - More efficient HTML escaping, no need to escape > and ". There's still a bunch of improvements to make, but I have much more confidence in the current implementation already.
2017-01-15Experimental rewrite of grotty to html conversion in RustYorhel4-0/+496
The previous C code was troublesome. - Didn't handle long lines - I couldn't convince myself that it was free of memory safety issues - Needed improving anyway, there are some formatting bugs. These are hard to fix in the current code. I mostly replicated the formatting bugs of the old C implementation in Rust, and possibly added a few new bugs as well. It's not a significant improvement right now, more testing and fixing will be needed. The performance of both implementations is comparable, with the Rust version being slightly faster in many cases (and slower in some others). I did spend more time trying to optimize this Rust version than I did with the old C code. I initially tried a naive-ish conversion of the C code to Rust, but that turned out to be much slower and I had to resort to using regexes and different data structures fix that.