lazwiki: fixed compile

This commit is contained in:
mattias 2025-03-18 09:47:45 +01:00
parent a7b3a555a2
commit eb2a771f19
2 changed files with 6 additions and 1 deletions

1
components/wiki/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
parsewikipage

View File

@ -136,6 +136,11 @@ const
NOTE_ICON = 'note.png';
WARNING_ICON = 'warning.png';
function CompareStrListUTF8LowerCase(List: TStringList; Index1, Index2: Integer): Integer;
begin
Result:=UTF8CompareText(List[Index1],List[Index2]);
end;
{ Replaces some special characters by their HTML code }
function EscapeToHTML(AText: string): string;
var
@ -226,7 +231,6 @@ begin
end;
end;
procedure TWiki2XHTMLConverter.DoAddLinksToTranslations(Page: TW2XHTMLPage);
var
TranslationPage: TW2XHTMLPage;