mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 22:19:17 +02:00
IDE: code help hint: show elements pre, table, tr, th, td
git-svn-id: trunk@33796 -
This commit is contained in:
parent
246cf4a714
commit
b76c5cf019
@ -30,7 +30,7 @@
|
|||||||
-check if identifier still exists
|
-check if identifier still exists
|
||||||
-check if unit conflicts with another unit in path
|
-check if unit conflicts with another unit in path
|
||||||
-buttons: add unit to interface, add unit to implementation
|
-buttons: add unit to interface, add unit to implementation
|
||||||
-add unit to uses
|
-button: jump to identifier
|
||||||
-add dependency to owner
|
-add dependency to owner
|
||||||
-clean up old entries
|
-clean up old entries
|
||||||
-When, How?
|
-When, How?
|
||||||
|
@ -2657,7 +2657,14 @@ function TCodeHelpManager.GetFPDocNodeAsHTML(FPDocFile: TLazFPDocFile;
|
|||||||
else if Node.NodeName='seealso' then
|
else if Node.NodeName='seealso' then
|
||||||
Result:=Result+'<div class="title">'+'See also'+'</div>';
|
Result:=Result+'<div class="title">'+'See also'+'</div>';
|
||||||
Result:=Result+'<div class="'+Node.NodeName+'">'+s+'</div>'+LineEnding;
|
Result:=Result+'<div class="'+Node.NodeName+'">'+s+'</div>'+LineEnding;
|
||||||
end else if (Node.NodeName='p') or (Node.NodeName='b')
|
end else if (Node.NodeName='p')
|
||||||
|
or (Node.NodeName='b')
|
||||||
|
or (Node.NodeName='pre')
|
||||||
|
or (Node.NodeName='table')
|
||||||
|
or (Node.NodeName='th')
|
||||||
|
or (Node.NodeName='tr')
|
||||||
|
or (Node.NodeName='td')
|
||||||
|
or (Node.NodeName='hr')
|
||||||
then begin
|
then begin
|
||||||
Result:=Result+'<'+Node.NodeName+'>'+AddChilds(Node)+'</'+Node.NodeName+'>';
|
Result:=Result+'<'+Node.NodeName+'>'+AddChilds(Node)+'</'+Node.NodeName+'>';
|
||||||
end else if (Node.NodeName='var') then begin
|
end else if (Node.NodeName='var') then begin
|
||||||
|
Loading…
Reference in New Issue
Block a user