Add Github badge
This commit is contained in:
parent
098ad30596
commit
af4400b1f7
2 changed files with 24 additions and 0 deletions
|
|
@ -5,6 +5,7 @@
|
||||||

|

|
||||||

|

|
||||||

|

|
||||||
|
[](https://github.com/scub-france/Docling-Studio)
|
||||||
|
|
||||||
A visual document analysis studio powered by [Docling](https://github.com/DS4SD/docling).
|
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.
|
Upload a PDF, configure the extraction pipeline, and visualize the results — text, tables, images, formulas, bounding boxes — all from your browser.
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,18 @@
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<div class="sidebar-footer">
|
<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>
|
<span class="version">v{{ version }}</span>
|
||||||
</div>
|
</div>
|
||||||
</aside>
|
</aside>
|
||||||
|
|
@ -140,6 +152,17 @@ defineProps({
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.github-badge {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
opacity: 0.7;
|
||||||
|
transition: opacity var(--transition);
|
||||||
|
}
|
||||||
|
|
||||||
|
.github-badge:hover {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
.version {
|
.version {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: var(--text-muted);
|
color: var(--text-muted);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue