Hi Alexander, On Thu, Jul 21, 2016 at 09:50:22PM +0200, Alexander Voigt wrote:
Hi Dillo developers,
I stumbled upon a page with a lot of code snippets wrapped in a <pre> block, where Dillo seems to have a rendering problem: Underscores `_' are not drawn. I stripped down this real-world-example to the attached minimal html file which reproduces the problem:
The page should render as follows:
============================================ softpoint_with_block() { { echo ""; } | ./softpoint.x leshouches } ============================================
However, in the development version of Dillo it renders as follows:
============================================ softpoint with block() { { echo ""; } | ./softpoint.x leshouches } ============================================
As you can see, the underscores in the function softpoint_with_block() are not drawn in Dillo.
However, the underscores are drawn correcty if you
* remove the style="..." specification from the <pre> block or
* remove the line
{ echo ""; } | ./softpoint.x leshouches
from the <pre> block content.
The attached example renders OK here. Maybe someone else can reproduce it. -- Cheers Jorge.-