Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge branch 'docs/21'
Browse files Browse the repository at this point in the history
Close #21
  • Loading branch information
michalbundyra committed Oct 24, 2019
2 parents b2fc912 + 420203b commit d0b63ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/book/figlet.md
Expand Up @@ -7,14 +7,14 @@ FIGlets use a special font format, called FLT (FigLet Font). By default, one
standard font is shipped with `Zend\Text\Figlet`, but you can download
additional fonts at [http://www.figlet.org](http://www.figlet.org).

> ## Compressed fonts
> ### Compressed Fonts
>
> `Zend\Text\Figlet` supports gzipped fonts. This means that you can take an
> `.flf` file and gzip it. To allow `Zend\Text\Figlet` to recognize this, the
> gzipped font must have the extension `.gz`. Further, to be able to use
> gzipped fonts, you have to have enabled the PHP GZIP extension.
> ## Encoding
> ### Encoding
>
> `Zend\Text\Figlet` expects your strings to be UTF-8 encoded by default. If
> this is not the case, you can supply the character encoding to the second
Expand Down Expand Up @@ -62,7 +62,7 @@ echo $figlet->render('Zend');

Assuming you are using a monospace font, the above results in the following:

```
```text
______ ______ _ __ ______
|__ // | ___|| | \| || | __ \\
/ // | ||__ | ' || | | \ ||
Expand Down
4 changes: 2 additions & 2 deletions docs/book/table.md
Expand Up @@ -5,7 +5,7 @@ decorators. This can be helpful for sending structured data in text emails, or
to display table information in a CLI application. `Zend\Text\Table` supports
multi-line columns, column spans, and alignment.

> ## Encoding
> ### Encoding
>
> `Zend\Text\Table` expects your strings to be UTF-8 encoded by default. If this
> is not the case, you can either supply the character encoding as a parameter
Expand Down Expand Up @@ -98,7 +98,7 @@ echo $table;

The above results in the following output:

```php
```text
┌──────────┬────────────────────┐
│Zend │Framework │
|──────────|────────────────────|
Expand Down

0 comments on commit d0b63ac

Please sign in to comment.