22 lines
555 B
C#
22 lines
555 B
C#
|
|
////////////////////////////////////////////////////////////////////////////////
|
|||
|
|
|
|||
|
|
namespace WeChatWASM.MDV
|
|||
|
|
{
|
|||
|
|
public interface IBuilder
|
|||
|
|
{
|
|||
|
|
void Text( string text, Style style, string link, string tooltip );
|
|||
|
|
void Image( string url, string alt, string tooltip );
|
|||
|
|
|
|||
|
|
void NewLine();
|
|||
|
|
void Space();
|
|||
|
|
void HorizontalLine();
|
|||
|
|
|
|||
|
|
void Indent();
|
|||
|
|
void Outdent();
|
|||
|
|
void Prefix( string text, Style style );
|
|||
|
|
|
|||
|
|
void StartBlock( bool quote );
|
|||
|
|
void EndBlock();
|
|||
|
|
}
|
|||
|
|
}
|