Vampyre Imaging Library Forum

Imaging Category => News & Announcements => Topic started by: Galfar on 28 July 2011, 23:28:59

Title: Code Syntax Highlighting
Post by: Galfar on 28 July 2011, 23:28:59
You can post source code with syntax highlighting using [code=lang]your code[/code] tags. For Delphi/Pascal use [code=delphi] or [code=pascal].

Result looks like this:
Code (pascal) Select

procedure AddOne(var I: Integer);
begin
  I := I + 1;
end;