The following piece of source code leads to different horizontal spaces after "Test1" and "Test2":
-------- snip ----------
---
Test1: - abd - def
Test2: - ghi - jkl
------- snip --------
A possible solution is:
Change line 530 in Format.pm (from latest relaease in October 2008) from
s/$/<p>/ if ($is_paragraph);
to
s/$/<p><\/p>/ if ($is_paragraph);
This seems a weird browser rendering problem, because in both cases the HTML is exactly the same.
Log in to post a comment.
A possible solution is:
Change line 530 in Format.pm (from latest relaease in October 2008) from
s/$/<p>/ if ($is_paragraph);
to
s/$/<p><\/p>/ if ($is_paragraph);
This seems a weird browser rendering problem, because in both cases the HTML is exactly the same.