# README

This project aims to make the Binding of Isaac modding documentation better by providing additional informations and features.

Process of adding new content to a file: 1. make sure to add this line of code at the top of the head `<!--Lua Codehightlight--><link href="prism.css" rel="stylesheet" />`\
2\. make sure to add this line of code at the bottom of the body `<!--Lua Codehightlight--><script src="prism.js"></script>` 3. add the following to the "memdoc" div you want to add the text to:

```markup
<!--start Custom comment -->
<p>YOUR DESCRIPTION HERE</p>
<div class="example_code">
YOUR CODE DESCRIPTION HERE
<pre><code class="language-lua">CODE HERE
</code></pre>    
</div>
<!--End Custom comment -->
```

Add notes like this:

```markup
<div class="notes">
YOU CONTENT HERE
</div>
```

Add bugs like this

```markup
<div class="bugs">
YOU CONTENT HERE
</div>
```

Removed original description can be marked like this:

```markup
<!--start Custom comment -->
<!-- Removed false description -->
<!--End Custom comment -->
```


---

# 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.moddingofisaac.com/ab_p/master.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.
