# Markdown Guidelines

## Emphasis

Add emphasis to your text by adding stars (\*) or underscores (\_) around it, like this:&#x20;

**Bold** - `**double asteriks**`&#x20;

*Italic* - `*asteriks* or _underscores_`

~~Strikethrough~~ - `~~Scratch this~~`

Underline - `__double underscores__`

Combined ***Bold and Italic*** - `**_double asteriks + underscores_**`

## Headings (for Articles only)&#x20;

Add a header to your article with this syntax:

```
# One '#' for a h1 header
## Two '#'s for a h2 header
...
###### Six '#'s for a h6 header
```

This is how it will look like:&#x20;

<figure><img src="/files/Z8ppGf1XkgpIU9MUhZAV" alt=""><figcaption></figcaption></figure>

## Lists

Lists in Articles (example):

<figure><img src="/files/N8BVOib6mW4w782M3Qth" alt=""><figcaption></figcaption></figure>

Result:&#x20;

Lists in Posts (example):&#x20;

<figure><img src="/files/VRGPrXODl3YaSgJZIOEi" alt=""><figcaption></figcaption></figure>

Result:&#x20;

<figure><img src="/files/twDusKNzuqYJYdhTKCwr" alt=""><figcaption></figcaption></figure>

## Links

<http://www.example.com/> - URLs will automatically get turned into links [`http://www.example.com`](http://www.example.com)

To write a hyperlink such as: [I am Hyperlink](https://solcial.io) - you can follow this syntax: \
`[I am Hyperlink](https://kaichi.xyz)`

## Inline Images

You can use the following markdown to input images from the internet or your computer: `![image description](put-link-to-image-here)`


---

# 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://docs.kaichi.xyz/getting-started/markdown-guidelines.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.
