> For the complete documentation index, see [llms.txt](https://docs.rainbird.ai/rainbird/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rainbird.ai/rainbird/knowledge-modelling/modelling-features/other-features/markdown.md).

# Markdown

Formatting can be applied to some content that is displayed to an end-user at runtime to enhance the user experience, by ensuring information is easier to read.

This formatting can be applied to the following:

1. [Question wording](/rainbird/knowledge-modelling/modelling-features/relationships/question-configuration.md#question-text)
2. [Concept instance metadata](/rainbird/knowledge-modelling/modelling-features/concepts/concept-instances.md#metadata) (can be displayed when the instance is referenced in a question or if the instance is returned as a result)

| Formatting                      | Command                                                                                                                      | Example                                                                                                 |
| ------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
| Bold                            | \*\*Bold\*\*                                                                                                                 | **Bold**                                                                                                |
| Italic                          | \_Italic\_                                                                                                                   | *Italic*                                                                                                |
| Header 1                        | # Header 1                                                                                                                   | <h2>Header 1</h2>                                                                                       |
| Header 2                        | ## Header2                                                                                                                   | <h3>Header 2</h3>                                                                                       |
| Header 3                        | ### Header 3                                                                                                                 | <h4>Header 3</h4>                                                                                       |
| Numbered list                   | <p>1. Item 1<br>2. Item 2</p>                                                                                                | <ol><li>Item 1</li><li>Item 2</li></ol>                                                                 |
| Bullet list                     | <p>-Item 1</p><p>    - Item 1a<br>-Item 2<br>    - Item 2a<br><br><strong>Note</strong>: Indent requires 4 spaces or tab</p> | <ul><li><p>Item 1</p><ul><li>Item 1a</li></ul></li><li><p>Item 2</p><ul><li>Item 2a</li></ul></li></ul> |
| Inline link with title on hover | \[Click here!]\(<https://www.google.co.uk> "Google")                                                                         | <img src="/files/Z05tpVYMfWJ6Z4XolG0G" alt="" data-size="original">                                     |
| Link without title              | \[Click here]\(<https://www.google.co.uk>)                                                                                   | [Click here](https://www.google.co.uk)                                                                  |

{% hint style="info" %}
Rainbird agents will display the markdown formatting for question wording and instance metadata by default.

If implementing a custom solution, it is recommended to discuss these display requirements with your development team.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.rainbird.ai/rainbird/knowledge-modelling/modelling-features/other-features/markdown.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
