Reformat example

Continuing with Reading multiple lines of input using "ansible.builtin.pause" or "vars_prompt" (or another plugin)?:

- name: Playbook to prompt for a multi-line string
  hosts: localhost
  gather_facts: false
  tasks:
    - ansible.builtin.pause:
        prompt: Enter value
        multiline: yes # note that this does not exist :slight_smile:
        register: result
    - name: Use the multi-line string
      debug:
        var: result