You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually the generated HTML is finished by a single "<p>".
The technical reason for this is that the implemantation simply adds an opening "<p>" just in case there is still some text to come.
Syntactically spoken this is dangerous because there may follow other HTML running into problems with this "opened but not closed <p>". This finishing "<p>" should be removed therefore as soon as it is sure that the RTF source is completely consumed. This may be done at the very end of the transformation, just befor returning the result.
The text was updated successfully, but these errors were encountered:
Actually the generated HTML is finished by a single "<p>".
The technical reason for this is that the implemantation simply adds an opening "<p>" just in case there is still some text to come.
Syntactically spoken this is dangerous because there may follow other HTML running into problems with this "opened but not closed <p>". This finishing "<p>" should be removed therefore as soon as it is sure that the RTF source is completely consumed. This may be done at the very end of the transformation, just befor returning the result.
The text was updated successfully, but these errors were encountered: