> For the complete documentation index, see [llms.txt](https://docs.imerit.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.imerit.net/data/data-in-ango-hub/embedding-private-bucket-files-in-markdown-assets.md).

# Embedding Private Bucket Files in Markdown Assets

Ango Hub supports uploading assets in the powerful Markdown format, allowing you to create assets styled and structured with HTML and CSS.

You can embed external files with an URL in a Markdown file, for example:

```markdown
# Heading
Subtitle

<div style="display:flex;flex-wrap: wrap;">
  <div style="width:210px;margin:10px">
    <div style="width:210px">
      <a href="https://link.com" target="_blank">
        <img src="https://private-assets.link/20210408-DSC_4015.jpg" width="200" />
      </a>
    </div>
    <div style="font-size:20px;font-weight:500;margin:10px 0 0 0">
      Text Under Image
    </div>
  </div>
</div>
```

The above Markdown file contains a link to an external image. That image will be loaded when the labeler loads the Markdown asset.

It is also possible, if you have [created an integration](/data/storages/importing-private-cloud-assets-aws.md) between your private bucket on AWS S3 or GCP, to link to files in your private bucket and have them show in your Markdown file.

## How to Embed Private Bucket Files in Markdown Assets

First, create an integration from the *Integration* tab of your [Organization page](https://imerit.ango.ai/organization). [You can read how to do so here](/data/storages/importing-private-cloud-assets-aws.md).

Then, from the same page, copy the integration ID of your newly created integration, by clicking on the "Copy" button next to the ID:

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

In your Markdown file, append `integrationId=1111111`to the end of your private asset URLs, where 111111 is the integration ID you've just copied to your clipboard.

As an example, this is what such a Markdown asset would look like:

```markdown
# Heading
Subtitle

<div style="display:flex;flex-wrap: wrap;">
  <div style="width:210px;margin:10px">
    <div style="width:210px">
      <a href="https://link.com" target="_blank">
        <img src="https://private-assets.link/20210408-DSC_4015.jpg?storageId=123456789123" width="200" />
      </a>
    </div>
    <div style="font-size:20px;font-weight:500;margin:10px 0 0 0">
      Text Under Image
    </div>
  </div>
</div>
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.imerit.net/data/data-in-ango-hub/embedding-private-bucket-files-in-markdown-assets.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
