Add Github badge

This commit is contained in:
Pier-Jean Malandrino 2026-04-07 08:57:39 +02:00
parent 098ad30596
commit af4400b1f7
2 changed files with 24 additions and 0 deletions

View file

@ -5,6 +5,7 @@
![Node](https://img.shields.io/badge/node-20+-green)
![Docling](https://img.shields.io/badge/powered%20by-Docling-orange)
![CI](https://github.com/scub-france/Docling-Studio/actions/workflows/ci.yml/badge.svg)
[![GitHub Stars](https://img.shields.io/github/stars/scub-france/Docling-Studio?style=flat-square&logo=github&label=Stars)](https://github.com/scub-france/Docling-Studio)
A visual document analysis studio powered by [Docling](https://github.com/DS4SD/docling).
Upload a PDF, configure the extraction pipeline, and visualize the results — text, tables, images, formulas, bounding boxes — all from your browser.

View file

@ -54,6 +54,18 @@
</nav>
<div class="sidebar-footer">
<a
class="github-badge"
href="https://github.com/scub-france/Docling-Studio"
target="_blank"
rel="noopener"
>
<img
src="https://img.shields.io/github/stars/scub-france/Docling-Studio?style=social"
alt="GitHub Stars"
height="20"
/>
</a>
<span class="version">v{{ version }}</span>
</div>
</aside>
@ -140,6 +152,17 @@ defineProps({
overflow: hidden;
}
.github-badge {
display: block;
margin-bottom: 8px;
opacity: 0.7;
transition: opacity var(--transition);
}
.github-badge:hover {
opacity: 1;
}
.version {
font-size: 12px;
color: var(--text-muted);