I was wondering how easy it would be to make it possible to inject html code into a blueprint using the <prop> tag.
So I exported the svn repository and took a look at the BlueprintRenderer class and noticed that line 130 in the BlueprintRenderer.java file read:
html.append("<html<body>");
I guess it should be:
html.append("<html><body>");
This is of course no big deal - the rendering works fine anyway. But it is always nice to root out those small insignificant errors - they might have an impact at a later stage.
Regards
Henrik