%s'; public const TAG_CODE_CLOSE = ''; public const TAG_CODE_OPEN = ''; public const TAG_H1 = '%s'; public const TAG_H2 = '%s'; public const TAG_H3 = '%s'; public const TAG_LINK = '%s'; public const TAG_LIST = '%s'; public const TAG_QUOTE = '%s'; public const TAG_TEXT = '%s'; public const WRAP_BREAK = PHP_EOL; public const WRAP_WIDTH = 320; // px public static function code( string $value ): string; public static function h1( string $value, int $width = self::WRAP_WIDTH ): string; public static function h2( string $value, int $width = self::WRAP_WIDTH ): string; public static function h3( string $value, int $width = self::WRAP_WIDTH ): string; public static function link( string $href, string $title, string $value ): string; public static function list( string $value, int $width = self::WRAP_WIDTH ): string; public static function quote( string $value, int $width = self::WRAP_WIDTH ): string; public static function text( string $value, int $width = self::WRAP_WIDTH ): string; public static function pre( string $value ): string; }