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

Updates headline level in blockquotes #21

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/book/figlet.md
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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