While working on
npmaven, I decided to use
Pamflet for generating the browser content. I hit a snag when I discovered that Lift doesn't like a URL with a + in it, such as the
Combined Pages link. Lift will say the resource cannot be found. Replacing each + with a %2B works like a charm, tho.
I don't quite see how I can make Lift accept a + in the link. I can see a way where I could find all of the anchors in each document, replacing the +'s with %2B's. I'm curious if there is an easy solution before I work too hard. What is the best way to make these links work?
Joe