mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-24 16:21:12 +08:00
Merge branch 'ArthurSonzogni:main' into main
This commit is contained in:
commit
bc3657d62a
@ -1,6 +1,8 @@
|
|||||||
@page getting-started Getting Started
|
@page getting-started Getting Started
|
||||||
@tableofcontents
|
@tableofcontents
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
# 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.
|
||||||
|
@ -25,6 +25,26 @@
|
|||||||
DoxygenAwesomeParagraphLink.init()
|
DoxygenAwesomeParagraphLink.init()
|
||||||
DoxygenAwesomeInteractiveToc.init()
|
DoxygenAwesomeInteractiveToc.init()
|
||||||
DoxygenAwesomeTabs.init()
|
DoxygenAwesomeTabs.init()
|
||||||
|
|
||||||
|
window.addEventListener('DOMContentLoaded', function () {
|
||||||
|
document.querySelectorAll(".headertitle").forEach(div => {
|
||||||
|
|
||||||
|
// Hide progressively the title.
|
||||||
|
if (div.textContent != "Getting Started" &&
|
||||||
|
div.textContent != "Installation" &&
|
||||||
|
div.textContent != "Modules" &&
|
||||||
|
true) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
div.style.display = "none";
|
||||||
|
|
||||||
|
// Show progressively the image.
|
||||||
|
const img = document.querySelector("img.inline");
|
||||||
|
img.style.maxHeight = "40vh";
|
||||||
|
img.style.maxWidth = "100%";
|
||||||
|
img.style.objectFit = "contain";
|
||||||
|
});
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
$treeview
|
$treeview
|
||||||
$search
|
$search
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
@page installation Installation
|
@page installation Installation
|
||||||
@tableofcontents
|
@tableofcontents
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
## 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.
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
# Modules {#modules}
|
# Modules {#modules}
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
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
|
||||||
|
Loading…
Reference in New Issue
Block a user