Doc: Add image headers.

This commit is contained in:
ArthurSonzogni 2025-05-30 19:32:42 +02:00
parent deae56888a
commit cde284e747
No known key found for this signature in database
GPG Key ID: 41D98248C074CD6C
4 changed files with 24 additions and 0 deletions

View File

@ -1,6 +1,8 @@
@page getting-started Getting Started @page getting-started Getting Started
@tableofcontents @tableofcontents
![3edd56cb-3ebb-442c-b7da-dfa5a759f4eb](https://github.com/user-attachments/assets/ed1bc694-7b3f-487c-9fd3-801437a6460b)
# Install FTXUI # Install FTXUI
To set up FTXUI in your project, follow the [installation guide](installation.html), which provides instructions for multiple build systems and package managers. To set up FTXUI in your project, follow the [installation guide](installation.html), which provides instructions for multiple build systems and package managers.

View File

@ -25,6 +25,23 @@
DoxygenAwesomeParagraphLink.init() DoxygenAwesomeParagraphLink.init()
DoxygenAwesomeInteractiveToc.init() DoxygenAwesomeInteractiveToc.init()
DoxygenAwesomeTabs.init() DoxygenAwesomeTabs.init()
window.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll(".headertitle").forEach(div => {
if (div.textContent != "Getting Started" &&
div.textContent != "Installation" &&
div.textContent != "Modules" &&
true) {
return;
}
div.style.display = "none";
const img = document.querySelector("img.inline");
img.style.transition = "all 1.0s ease-in-out";
img.style.maxHeight = "40vh";
img.style.maxWidth = "100%";
img.style.objectFit = "contain";
});
});
</script> </script>
$treeview $treeview
$search $search

View File

@ -1,6 +1,9 @@
@page installation Installation @page installation Installation
@tableofcontents @tableofcontents
![64c412f8-a29f-475f-8a2b-ffc662975a08](https://github.com/user-attachments/assets/ab5d7561-bae0-4f42-bd80-5e94bfd15e09)
## Overview ## Overview
FTXUI can be integrated into your project using several build systems and package managers. FTXUI can be integrated into your project using several build systems and package managers.

View File

@ -1,5 +1,7 @@
# Modules {#modules} # Modules {#modules}
![66f79802-97b3-4b31-b3dd-e096095a0ab7](https://github.com/user-attachments/assets/9f964064-7cd5-421e-afb4-091256c5096e)
FTXUI is organized into three modules, each building upon the previous: FTXUI is organized into three modules, each building upon the previous:
1. @subpage module-screen — low-level rendering 1. @subpage module-screen — low-level rendering