open the view "HTML\Single Day Blog".
Replace the formula in the 4th column with:
permalink := "/"+@WebDbName + "/images/permalink.gif";
Subject := @ReplaceSubstring(Subject;"&";"&");
Subject := @ReplaceSubstring(Subject;"\"";""");
Subject := @ReplaceSubstring(Subject;"";" ");
TitleHTML := "<span style=\"float:left;\"><a href=\"plinks/"+permalink+"\" title=\"PermaLink : "+ Subject+"\"><img alt=\"Permalink: "+ Subject+"\" src=\"pushpin.gif\" border=\"0\">"+Subject+"</a></span>";
PreLine2 := @If(ShowAuthor="Yes" | ShowCategory="Yes";"<div class=\"storytitle\"><p class=\"storytitletext\">";"");
CategoryHTML := "<span style=\"float:right;\">" + $$Categories + "</span>";
PostLine2 := @If(ShowAuthor="Yes" | ShowCategory="Yes";"</p></div>";"");
PreLine3 := @If(ShowLocation="Yes";"<div class=\"storytitle\"><p class=\"storytitletext\">";"");
LocationHTML := "<span style=\"float:left;\">, " + text_Land + "</span>";
PostLine3 := @If(ShowLocation="Yes";"</p></div>";"");
ShowCat := @If(ShowCategory="No"; ""; CategoryHTML);
ShowLoc := @If(ShowLocation="No"; ""; LocationHTML);
readmore := @If(FinalReadMoreText != "";"<br/><a title=\"Read More On This Entry…\" href=\"plinks/"+permalink+"\">Read More . . .</a>";"");
thumbnail := "/" + @WebDbName + "/plinks/"+PermaLink+"/$File/" + Thumbnail;
ShowPicture := @If(Thumbnail="None";"";"<img alt=\"Preview: "+_Subject +"\" src=\""+thumbnail+"\">");
HTML :=
"<div class=\"storytitle\"><p class=\"storytitletext\">" +<br/>
TitleHTML+ "</p></div>"+<br/>
PreLine2 + ShowCat + PostLine2 +<br/>
PreLine3 + PostLine3 +<br/>
"<div class=\"StoryContents\"><p class=\"StoryContentsText\" >"+<br/>
"<br/>"+ ShowPicture + FinalStoryText+ReadMore+<br/>
"<br/><br/></div>";<br/>
@If(@IsResponseDoc;"";HTML)
Please report if this fix fits your requirements.
Christian