常用弥补MarkDown的HTML标签
字体
字体及字体颜色和大小
字体颜色
换行
- 使用html标签
<br/>
换行
文本居左
文本居中
文本居右
下划线type
IMyService=interface
procedure method1(const param1:string);
function method2(const param1:string):string;
end;
TMyEvent=procedure(const AValue:string) of object;
TImpMyService=class(TInterfacedObject,IMyService)
private
{private statement code}
protected
procedure method1(const param1:string);
function method2(const param1:string):string;
public
property onValueChanged:TMyEvent read FValueChanged write FValueChanged;
end;
标签:MarkDown,const,string,学习,字体,param1,procedure
From: https://www.cnblogs.com/sundh1981/p/17214726.html