> 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/interfejs-uzytkownika/formularze/biblioteka-komponentow-bazowych/4-tresci/tresc-textcontent/tresc-przy-pomocy-wiki-markup.md).

# Content using Wiki Markup

## Standard Confluence Wiki Markup

In artifacts **Content (TextContent)** Wiki Markup can be used. For formatting the text contained in a given **Content** refer to the documentation:

* <https://confluence.atlassian.com/display/DOC/Confluence+Wiki+Markup>
* <https://en.wikipedia.org/wiki/Help:Wiki_markup#Special_characters>

### Example formatting in **Content** and appearance in the request

<table><thead><tr><th>Content (Text content)</th><th>request</th></tr></thead><tbody><tr><td><pre class="language-markup"><code class="lang-markup">*bold*
+underline+
-strikethrough-
_italics_
??quote??
Text with ^superscript^
Text with ~subscript~
\
\
New line after a larger gap
</code></pre></td><td><img src="/files/5ba608af3b957b2bd21743252e8302d89e7a360d" alt="" data-size="original"></td></tr><tr><td><pre class="language-markup"><code class="lang-markup">h1. Heading H1
h3. Heading H3
h5. Heading H5
line: ----
{color:red}Text in red{color}
Text {{fixed-width}}
hyperlink: [Go to the Consdata company website|http://consdata.pl]
Image: !biz/logo_firmy.png!
</code></pre></td><td><img src="/files/ec0a10b513137af512512cbda9c5aa57c49e62e5" alt=""></td></tr><tr><td><pre class="language-markup"><code class="lang-markup"><strong>Table:
</strong>
||header 1||header 2||header 3||
|looooooooooooooooooooooooooooong cell|cell A2|cell A3|
|cell B1|cell B2|cell B3|
</code></pre></td><td><img src="/files/d50d14bc73ce5e163d22fe86928cd2b44eb369a1" alt="" data-size="original"></td></tr><tr><td><pre class="language-markup"><code class="lang-markup">Bullet list:
item 1
item 2
** item 2a
*** item 2b
**** item 2c
***** item 2d
****** item 2e
item 3
</code></pre></td><td><img src="/files/853f7f08ef7509dcf82f3e9de7ad8ef7ad900132" alt=""></td></tr><tr><td><pre class="language-markup"><code class="lang-markup">Numbering:
item 1
item 2
** item 2a
*** item 2b
**** item 2c
***** item 2d
****** item 2e
item 3
</code></pre></td><td><img src="/files/ee48087cdaf3270ab55be68190a6157ccbff322e" alt=""></td></tr></tbody></table>

### Images

To insert an image in **Content** you need to place the path to the image between exclamation marks. If we want to add any attributes to the image (e.g. alternative text), we should use the tag `{img}`, which has the following syntax:

`{img:attribute_name1=attribute_value1:attribute_name2=attribute_value2...}image_path{img}`

An attribute can be any attribute supported by the HTML tag except `src` (<https://www.w3schools.com/tags/tag_img.asp>).

#### Examples

| Description                           | WikiMarkup                                             | Output                                                         |
| ------------------------------------- | ------------------------------------------------------ | -------------------------------------------------------------- |
| Image                                 | `!biz/1.png!`                                          |                                                                |
| Image with alternative text           | `{img:alt=Alternative text}biz/1.png{img}`             | `<img src='biz/1.png' alt='Alternative text' />`               |
| Image with alternative text and class | `{img:alt=Alternative text:class=class}biz/1.png{img}` | `<img src='biz/1.png' alt='Alternative text' class='class' />` |

#### Confluence Wiki Markup extensions

In addition to the standard Confluence Wiki Markup, we can use additional extensions:

`{span:class1}...{span}` -> is replaced with `<span class="class1">...</span>`

{% hint style="info" %}
Demo request: demoTextContentWikiMarkup
{% 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.eximee.com/documentation/documentation-en/budowanie-aplikacji/interfejs-uzytkownika/formularze/biblioteka-komponentow-bazowych/4-tresci/tresc-textcontent/tresc-przy-pomocy-wiki-markup.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.
