* Gerald Pfeifer:

> On Fri, 2 Feb 2024, Florian Weimer wrote:
>> +<h3 id="warnings-as-errors">Certain warnings are now errors</h3>
>
> That's quite a nice description, thank you, Florian!
>
>> +The initial ISO C standard and its 1999 revision removed support for
>
> May I suggest to wrap paragraphs in <p>...</p>? Not strictly necessary any 
> more, now that we switched to HTML 5, though more consistent and explicit.

I've tried this now, and adds extra whitespace in some cases, for
example here:

“
<p>
In most cases, simply adding the missing <code>int</code> keyword
addresses the error.  For example, a flag variable like
</p>

<pre>
  static initialized;
</pre>

<p>
becomes:
</p>

<pre>
  static <ins>int</ins> initialized;
</pre>
”

I would have to nest the <pre> in the <p>, which suggests a complexity
that just isn't there.

Thanks,
Florian

Reply via email to