Skip to content

Add the "Maintained by EkLine" credit

Embed the EkLine credit on your documentation site. Find the snippet for your framework and paste it.

Find your docs framework below, copy the snippet, and paste it into your site. No account or API key required — the credit is a free hosted asset that adapts to your site’s theme automatically.

The credit comes in two forms. The web component inherits your site’s font and color, so it blends in with any theme. The SVG badge is a fixed-style image for platforms that strip scripts.

Maintained by EkLine badge on a light background
Light background
Maintained by EkLine badge on a dark background
Dark background

If you use an AI coding assistant, paste this prompt to add the credit automatically:

Add the "Maintained by EkLine" credit to the footer of the documentation site.
For framework-specific instructions, fetch https://docs.ekline.io/credit/
Use the web component: load https://ekline.io/v1/credit.js as an async
script, then place <ekline-credit></ekline-credit> in the site footer.
Detect which docs framework this project uses and follow its conventions
for adding a global script and footer element.
If the platform strips <script> tags ( like GitHub README, GitBook, ReadMe),
use this markdown badge instead:
[![Maintained by EkLine](https://ekline.io/v1/badges/maintained-by-ekline.svg)](https://ekline.io)
For GitHub READMEs, use a <picture> element to switch between the light
badge (maintained-by-ekline.svg) and the dark badge
(maintained-by-ekline-dark.svg) based on prefers-color-scheme.

These frameworks support the EkLine web component, which inherits your site’s color and font.

docusaurus.config.js
module.exports = {
scripts: [
{ src: 'https://ekline.io/v1/credit.js', async: true },
],
themeConfig: {
footer: {
copyright: '<ekline-credit></ekline-credit>',
},
},
};

Platforms that strip <script> tags can use the hosted SVG badge instead. The badge links to ekline.io and renders at 160 × 20 pixels:

Maintained by EkLine badge (light)
Maintained by EkLine badge (dark)

This snippet switches between light and dark badges based on the reader’s theme:

<p align="center">
<a href="https://ekline.io">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://ekline.io/v1/badges/maintained-by-ekline-dark.svg">
<img alt="Maintained by EkLine" src="https://ekline.io/v1/badges/maintained-by-ekline.svg" height="20">
</picture>
</a>
</p>