# Display Content Block

The **Display Content Block** allows you to present messages or outputs directly to users in your workflows. It is used for delivering dynamic content with support for markdown formatting.

## **Configurations**

### **Message**

Define the message you want to display to the user. The **Display Content Block** supports markdown formatting, allowing you to structure text, add emphasis, or include links for a polished presentation. Use <mark style="color:red;">`{{variables}}`</mark> to make the message dynamic.

[Learn about variables →](/docs/building-ai-agents/variables.md)

[Learn more about Markdown formatting →](/docs/building-ai-agents/writing-prompts.md#using-markdown-to-write-prompts)

#### **Example Message**:

```markdown
## Welcome to our app!
Here are your **next steps:**
1. Complete your profile.
2. Explore the features of {{productName}}.
3. Contact us [here](<https://example.com/support>) for assistance.
```

Learn more about markdown → \[PAGE: Writing Prompts with Markdown].

### Display an Image

```markdown
![Alt Text]({{myImageVariable}})
```

### Display Audio Player

```markdown
<audio src="{{myAudioVariable}}" controls /></audio>
```

### Display Video Player

```markdown
<video src="{{myVideoVariable}}"></video>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://university.mindstudio.ai/docs/building-ai-agents/blocks-reference/display-content-block.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
