mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 02:59:33 +02:00
* Take link contents into account when writing seealso section
git-svn-id: trunk@3866 -
This commit is contained in:
parent
85017f4139
commit
a49a8ba774
@ -1849,7 +1849,17 @@ begin
|
|||||||
end
|
end
|
||||||
else
|
else
|
||||||
NewEl := CreateLink(ParaEl,s);
|
NewEl := CreateLink(ParaEl,s);
|
||||||
AppendText(NewEl,El['id']);
|
if Not IsDescrNodeEmpty(El) then
|
||||||
|
begin
|
||||||
|
PushOutputNode(NewEl);
|
||||||
|
Try
|
||||||
|
ConvertBaseShortList(AElement, El, True)
|
||||||
|
Finally
|
||||||
|
PopOutputNode;
|
||||||
|
end;
|
||||||
|
end
|
||||||
|
else
|
||||||
|
AppendText(NewEl,El['id']);
|
||||||
l:=El['id'];
|
l:=El['id'];
|
||||||
DescrEl := Engine.FindShortDescr(AElement.GetModule,L);
|
DescrEl := Engine.FindShortDescr(AElement.GetModule,L);
|
||||||
if Assigned(DescrEl) then
|
if Assigned(DescrEl) then
|
||||||
|
Loading…
Reference in New Issue
Block a user