diff --git a/components/wiki/.gitignore b/components/wiki/.gitignore new file mode 100644 index 0000000000..59041ceae4 --- /dev/null +++ b/components/wiki/.gitignore @@ -0,0 +1 @@ +parsewikipage diff --git a/components/wiki/lazwiki/wiki2xhtmlconvert.pas b/components/wiki/lazwiki/wiki2xhtmlconvert.pas index 0fe071e328..c2a92f11aa 100644 --- a/components/wiki/lazwiki/wiki2xhtmlconvert.pas +++ b/components/wiki/lazwiki/wiki2xhtmlconvert.pas @@ -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;