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