-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRedeemerHTML.pas
62 lines (55 loc) · 1.3 KB
/
RedeemerHTML.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
unit RedeemerHTML;
interface
uses
RedeemerXML;
type
TRedeemerHTML = class(TRedeemerXML)
public
function GetTextAndSkip(): string;
const
NewLine = #11;
end;
implementation
uses
RedeemerEntities, StrUtils, SysUtils;
function TRedeemerHTML.GetTextAndSkip: string;
var
i: Integer;
begin
if (CurrentTag = 'br') or (CurrentTag = 'br/') then
begin
Result := NewLine;
end
else
begin
Result := '';
if IsSelfClosing then
begin
GoToAndGetNextTag();
Exit; // inhaltslos und nicht <br>
end;
end;
repeat
i := PosEx('>', Text, Position) + 1;
GoToAndGetNextTag();
if Done then // wir sind am Ende
begin
Result := Result + RemoveEntities(Copy(Text, i, TextLength - i));
// Rest
Break;
end
else
begin
Result := Result + RemoveEntities(Copy(Text, i, Position - i));
if (CurrentTag = 'br') or (CurrentTag = 'br/') then
Result := Result + NewLine
else
Break;
end;
until False;
Result := Clean(Result, True);
// Von und nach Absätzen keine Leerzeichen zulassen
Result := StringReplace(Result, NewLine + #32, NewLine, [rfReplaceAll]);
Result := StringReplace(Result, #32 + NewLine, NewLine, [rfReplaceAll]);
end;
end.