Small xhtml releated bugreport:
when I export to xhtml with an external css stylesheet, the link tag isn't property closed.
Line 2758 in CRVData.pas:
Code: Select all
RVWriteLn(Stream, '<link type="text/css" href="'+s+'" rel="stylesheet">');
Code: Select all
RVWriteLn(Stream, '<link type="text/css" href="'+s+'" rel="stylesheet" />');
Code: Select all
<style type="text/css">
body {
margin: 5px 5px 5px 5px;
background-color: #ffffff;
}
</style>