MOON
Server: Apache
System: Linux res.emeff.ca 3.10.0-962.3.2.lve1.5.24.10.el7.x86_64 #1 SMP Wed Mar 20 07:36:02 EDT 2019 x86_64
User: accemeff (1004)
PHP: 7.0.33
Disabled: NONE
Upload Files
File: /home/accemeff/vendor/craftcms/cms/docs/plain-text-fields.md
# Plain Text Fields

Plain Text fields give you either a normal text input or a multi-line textarea, where plain text can be entered.

## Settings

Plain Text fields have the following settings:

* **Placeholder Text** – The field’s placeholder text, to be displayed if the field has no value yet
* **Max Length** – The maximum number of characters the field can contain
* **Allow line breaks** – Whether or not to allow line breaks in this field


## The Field

Plain Text fields will either show a normal text input or a multi-line textarea, depending on whether the “Allow line breaks” setting was checked.

## Templating

Calling a Plain Text field in your templates will return the value that was entered in the field.

```twig
{% if user.bio %}
    <h3>Bio</h3>
    {{ user.bio|markdown }}
{% endif %}
```