# gutenberg/8.5.1/lib/patterns/quote.php

Gutenberg, version 8.5.1. 14 lines.

- Page: https://pluginprobe.com/plugins/gutenberg/8.5.1/code/lib/patterns/quote.php
- Raw: https://pluginprobe.com/plugins/gutenberg/8.5.1/raw/lib/patterns/quote.php
- Modified: 2020-07-08T14:10:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gutenberg/8.5.1/code/lib/patterns/quote.php#L10-L20`.

```php
<?php
/**
 * Quote block pattern.
 *
 * @package gutenberg
 */

return array(
	'title'         => __( 'Quote', 'gutenberg' ),
	'content'       => "<!-- wp:quote {\"className\":\"is-style-large\"} -->\n<blockquote class=\"wp-block-quote is-style-large\"><p>" . __( '"I know not all that may be coming, but be it what it will, I\'ll go to it laughing."', 'gutenberg' ) . '</p><cite>' . __( '— Herman Melville, Moby-Dick (1851)', 'gutenberg' ) . "</cite></blockquote>\n<!-- /wp:quote -->",
	'viewportWidth' => 800,
	'categories'    => array( 'text' ),
);

```
