Skip to content

Latest commit

 

History

History
52 lines (34 loc) · 1.3 KB

README.md

File metadata and controls

52 lines (34 loc) · 1.3 KB

Read Me

This is the repo of the Overwolf Developers website - API Documentation, guides, etc.

Add code block:

To add code blocks that contain links, please put this line one the top of the page, right after the sidebar_label section:

<script>hljs.initHighlightingOnLoad();</script>

And define your code block using this tags:

<pre><code class="js">

Add an image

Using a markdown:

![alt-text](assets/app-creation-process.svg)

Or using HTML if you want to customize the sizes:

<img src="../assets/app-creation-process.svg" alt="process" width="800"/>

Search configuration:

Supported admonition types:

Supported admonition types are: caution, note, important, tip, warning.

:::note This is my custom title
A note.
:::

:::caution This is my custom title
A caution.
:::

:::important te This is my custom title
An important.
:::

:::tip This is my custom title
A tip.
:::

:::warning This is my custom title
A warning.
:::