mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
define default wrap width attribute
This commit is contained in:
parent
fade94156b
commit
7f1bded9b9
1 changed files with 12 additions and 6 deletions
|
|
@ -30,15 +30,18 @@ interface Markup
|
||||||
): string;
|
): string;
|
||||||
|
|
||||||
public static function h1(
|
public static function h1(
|
||||||
string $value
|
string $value,
|
||||||
|
int $width = self::WRAP_WIDTH
|
||||||
): string;
|
): string;
|
||||||
|
|
||||||
public static function h2(
|
public static function h2(
|
||||||
string $value
|
string $value,
|
||||||
|
int $width = self::WRAP_WIDTH
|
||||||
): string;
|
): string;
|
||||||
|
|
||||||
public static function h3(
|
public static function h3(
|
||||||
string $value
|
string $value,
|
||||||
|
int $width = self::WRAP_WIDTH
|
||||||
): string;
|
): string;
|
||||||
|
|
||||||
public static function link(
|
public static function link(
|
||||||
|
|
@ -48,15 +51,18 @@ interface Markup
|
||||||
): string;
|
): string;
|
||||||
|
|
||||||
public static function list(
|
public static function list(
|
||||||
string $value
|
string $value,
|
||||||
|
int $width = self::WRAP_WIDTH
|
||||||
): string;
|
): string;
|
||||||
|
|
||||||
public static function quote(
|
public static function quote(
|
||||||
string $value
|
string $value,
|
||||||
|
int $width = self::WRAP_WIDTH
|
||||||
): string;
|
): string;
|
||||||
|
|
||||||
public static function text(
|
public static function text(
|
||||||
string $value
|
string $value,
|
||||||
|
int $width = self::WRAP_WIDTH
|
||||||
): string;
|
): string;
|
||||||
|
|
||||||
public static function pre(
|
public static function pre(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue