> For the complete documentation index, see [llms.txt](https://docs.hivepress.io/developer-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hivepress.io/developer-docs/framework/blocks/content.md).

# Content

This block type renders the provided text or HTML content.

### Parameters

* **content** - text or HTML content to output.

### Example

The code below outputs the "Hello World!" text.

```php
echo ( new HivePress\Blocks\Content(
	[
		'content' => 'Hello World!',
	]
) )->render();
```
