Aug 27
Up until now I have used the Hightlight Source Pro plugin to display source code on this blog. This plugin is OK and works well but I wanted better layout and readability for my code so I have now changed to the SyntaxHighlighter Evolved plugin.
I hope this will make the reading code snippets experience on my blog even better.
Syntax highlighting with Highlight Source Pro
namespace MVP
{
public interface ILoginView
{
void InitializeView(TViewData viewData);
void LoginValidated(bool loginSuccessful);
}
}
Syntax highlighting with SyntaxHighlighter Evolved
namespace MVP
{
public interface ILoginView
{
void InitializeView(TViewData viewData);
void LoginValidated(bool loginSuccessful);
}
}












