# Share AI-Generated Markdown on Discord Without Uploading Files

> Source: <https://dev.to/uni928/how-to-easily-share-ai-generated-documents-on-discord-2163>
> Published: 2026-08-31 01:15:46+00:00

No file upload required. No account required. Just paste your Markdown, generate a Discord-ready `[View the document](URL)`

link, and share it.

With ChatGPT and other generative AI tools, you can quickly create explanatory documents, instructions, and short reports in Markdown.

However, sharing those documents on Discord may require several steps, such as:

To simplify this process, I created a way to share AI-generated Markdown documents on Discord as a link such as [View the document](https://uni928.github.io/Uni928PublicHTMLs/index80Sample2English.html).

**Recipients only need to click the link to view the document as a formatted page, with Markdown headings, bold text, bulleted lists, and other formatting applied.**

Discord supports the following Markdown syntax for named links:

```
[View the document](<URL>)
```

For example:

```
[View the document](<https://uni928.github.io/Uni928PublicHTMLs/index80Sample2English.html>)
```

When you post this, recipients can view the document simply by clicking the following link:

👇 Site:

[https://uni928.github.io/Uni928PublicHTMLs/index80Sample2English.html](https://uni928.github.io/Uni928PublicHTMLs/index80Sample2English.html)

The site introduced here compresses the Markdown text and embeds it directly in the URL.

This allows you to share documents through the following simple process:

In other words, **you can let someone view the document using only a URL, without creating a separate document file.**

For example, you can ask ChatGPT:

```
Please create a simple Markdown document about 〇〇 that can be shared on Discord.
```

Then, paste the generated Markdown directly into the site.

The process, from creating a document with AI to sharing it on Discord, can be completed with relatively few steps.

I personally find this method particularly useful for:

Instead of pasting a long document directly into Discord, you can shorten the message and share it like this:

```
More details are available here.

[View the document](<URL>)
```

This method stores the Markdown data inside the URL itself.

Therefore, taking the URL length limits of browsers and Discord into account, the current limit is **9,000 characters for the compressed Base64 data**.

Also, embedding large amounts of image data would make the URL extremely long. For this reason, **image embedding is not supported when sharing through a URL**.

This method is intended less as a replacement for a full-featured document-sharing service and more for:

Easily sharing text-focused documents created with AI on Discord

For short, text-centered documents, I think this is a convenient and practical approach.

👇 GitHub

[https://github.com/uni928/Uni928PublicHTMLs/blob/main/index80English.html](https://github.com/uni928/Uni928PublicHTMLs/blob/main/index80English.html)

This article links to the sample page, `index80Sample2English.html`

. However, after reading the explanation, the regular `index80English.html`

is intended for actual use, so the GitHub link above points to that file.

The code is publicly available on GitHub for anyone who wants to check whether it contains malicious code.

Although a complete review may not always be possible, you can also download the HTML, attach it to ChatGPT or another AI tool, and ask:

```
Please check whether this HTML contains suspicious data transmission to external services or any malicious code.
```

For important uses, however, I recommend checking the code and communication destinations yourself instead of relying only on an AI review.

If you want to place even greater emphasis on security, you can use the following process:

This allows you to use your own copy without worrying about changes to the code on the original site after publication.

Because the HTML source is publicly available, you can use ChatGPT or another AI tool to make adjustments such as:

You can also modify the site to make it easier for you to use.

If you create and publish an even more convenient version, I would be happy to try it. Please let me know.

If you publish a modified version of this repository rather than a completely independent rewrite, please follow the terms of the MIT License.

You must include the copyright notice and the MIT License text.
