# Git Markdown

## This file is used to get an idea on how to write text on Github

**Good resource for -->** [**Click here**](https://guides.github.com/features/mastering-markdown/)

### Writing Text on Github:

## heading 1 --> converted to

## in html

### heading 2

#### heading 3

**heading 4**

**heading 5**

**heading 6**

Normal Text

**Bold Text**

*Italic Text*

~~strikthrough Text~~

### Writing lists on Github:

#### Unordered lists:

* item 1
* item 2
  * sub item 2b

#### Ordered lists:

1. item 1
2. item 2
3. item 3

#### Item Completion list:

* [ ] \[] item 1 incomplete
* [x] item 2 complete

#### Linking itmes:

[TextThatYouWantToApper](https://link-to-what-you-want.com)

#### Displaying images:

In brackets you would put the local path to the image or the URL:

![TextThatYouWantToApper](https://link-to-image.com)

#### Code Blocks:

| column 1 | column 2 |
| -------- | -------: |
| row1a    |    row2a |

Note: To left align column :--- To right align column ---:

This is `console.log()`

or:

```
console.log()
```

With above you can mark the language

```python
console.log()
```

**Code Block Highlighting:**

Basic example:

Before:

```python
const_data = []
```

After:

```python
const_data = {}
```

Better way of doing thigs:

```diff
- const_data = []
+ const_data = {}
```

#### Quotes:

> Idea 1

Agree

> Idea 2

Disagree

**Closing an issue when the pull request gets merged**

closes #3543534 - Number of the issue fixes #34435 - Number of the issue


---

# 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.arkannis.net/devops/git/git-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.
