> For the complete documentation index, see [llms.txt](https://docs.eximee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eximee.com/documentation/documentation-en/budowanie-aplikacji/aplikacja-biznesowa/dokumentowanie-aplikacji.md).

# Application documentation

{% stepper %}
{% step %}

### Creating documentation

In the **Documentation** you should use the button **Add documentation**, and then enter the name of the documentation being created.

The entry should contain a business description of the change - intended for non-technical people and people interested in the product from a business perspective.

<figure><img src="/files/048729f99fc4acc5ffb773992961302bdc0b8f86" alt=""><figcaption><p><em><strong>Figure 1.</strong> Documentation creation window</em></p></figcaption></figure>
{% endstep %}

{% step %}

### Documentation editing

To edit an existing documentation, you need to open the documentation and click the button **Edit documentation** ![Ilustracja 2](/files/61ea33c0d7cfe458e8310efaf9e64d2015b9aaf4).

The editing window is divided into the editing and preview sections. Between the screens there is a bar that allows changing the width of both sections.

<figure><img src="/files/b13cd8b7f7ff763d3d9b9233da05562daa962877" alt=""><figcaption><p><em><strong>Figure 2.</strong> Documentation editing window</em></p></figcaption></figure>
{% endstep %}

{% step %}

### Creating entries — markdown syntax

We create entries using tags [markdown](https://www.markdownguide.org/basic-syntax/). The documentation window contains a markdown editor with preview.

Example documentation using markdown (sample material showing various syntax elements):

{% code fullWidth="false" expandable="true" %}

```markdown
# Markdown syntax guide

## Headers
# This is a Heading h1
## This is a Heading h2
###### This is a Heading h6

## Emphasis
*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
_You **can** combine them_

## Lists
### Unordered
* Item 1
* Item 2
  * Item 2a
  * Item 2b

### Ordered
1. Item 1
2. Item 2
3. Item 3
   1. Item 3a
   2. Item 3b

## Images
![This is an alt text.](https://avatars.githubusercontent.com/u/10759137 "This is a sample image.")

## Links
You may be using [Markdown Live Preview](https://markdownlivepreview.com/).

## Blockquotes
> Markdown is a lightweight markup language with plain-text-formatting syntax, created in 2004 by John Gruber with Aaron Swartz.
>>
>> Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text using a plain text editor.

## Tables
| Left columns | Right columns |
| ------------- |:-------------:|
| left foo | right foo |
| left bar | right bar |
| left baz | right baz |

## Blocks of code
```

{% endcode %}

{% hint style="info" %}
The editor supports creating and previewing markdown in real time. Between the editor and the preview, you can adjust the width using the bar.
{% endhint %}
{% endstep %}

{% step %}

### Managing documentation artifacts

For a documentation artifact, you can:

* view version history,
* create a copy of the artifact,
* download it to disk.

It is enough in the window **Documentation** to click the context menu of the given artifact.

<figure><img src="/files/3fa1e140611e1b2f4d853b8ede490f30118a8dae" alt=""><figcaption><p><em><strong>Figure 3.</strong> List of the application's documentation with the context menu of one of the artifacts.</em></p></figcaption></figure>
{% endstep %}
{% endstepper %}


---

# 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.eximee.com/documentation/documentation-en/budowanie-aplikacji/aplikacja-biznesowa/dokumentowanie-aplikacji.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.
