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);
}
}
Continue reading »
Tagged with: Hightlight Source Pro • SyntaxHighlighter Evolved
Jul 03
C#.Net example
namespace MVP
{
public interface ILoginView
{
void InitializeView(TViewData viewData);
void LoginValidated(bool loginSuccessful);
}
}
I have now added support for code highlighting. To achieve this I installed the Highlight Source Pro plugin, it is based on GeSHi and supports several programming languages.
To make it easy for you to find my posts with code examples I have added the category Code examples. I hope this will make it more enjoyable for you to read my code examples and also easier to find them.
Tagged with: GeSHI • Hightlight Source Pro
Recent Comments