# gitbook\_markdown

## GitBook Markdown

***

#### Headers

## This is an `<h1>` tag

### This is an `<h2>` tag

#### This is an `<h3>` tag

#### 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

* Item 3a
* Item 3b

#### Images

![img](/files/fUYrGGwzzcnubETca4Tj)

#### Links

[GitHub](http://github.com)

#### Blockquotes

As Kanye West said:

> We're living the future so the present is our past.

#### Footnote

hello[^1]

#### Tables

| First Header                | Second Header                |
| --------------------------- | ---------------------------- |
| Content from cell 1         | Content from cell 2          |
| Content in the first column | Content in the second column |

#### Inline code

I think you should use an`<addr>` element here instead.

#### Code Block && Syntax highlighting

```javascript
function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}
```

#### [gitbook-plugin-todo](https://plugins.gitbook.com/plugin/todo)

* [x] this is a complete item
* [ ] this is an incomplete item

#### [gitbook-plugin-advanced-emoji](https://plugins.gitbook.com/plugin/advanced-emoji)

:bowtie: :smile: :laughing: :blush: :smiley: :relaxed: :smirk: :heart\_eyes: :kissing\_heart: :kissing\_closed\_eyes: :flushed: :older\_woman: :older\_man: :person\_with\_blond\_hair: :man\_with\_gua\_pi\_mao:

> [emoji-cheat-sheet](http://www.emoji-cheat-sheet.com/)

#### [gitbook-plugin-mermaid-compat](https://plugins.gitbook.com/plugin/mermaid-compat)

```mermaid
graph TD;
  A-->B;
  A-->C;
  B-->D;
  C-->D;
```

#### [gitbook-plugin-kaTex](https://plugins.gitbook.com/plugin/katex)

Inline math: $$\int\_{-\infty}^\infty g(x) dx$$

Block math:

$$
\int\_{-\infty}^\infty g(x) dx
$$

#### [gitbook-plugin-emphasize](https://plugins.gitbook.com/plugin/emphasize)

This text is

This text is

This text is

This text is

This text is

#### gitbook-plugin-chart

[^1]: hi


---

# 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://tchentro-tech-organization.gitbook.io/tchentro.tech-organization/server-setup-guide/gitbook_markdown.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.
