Fixing indentation of summary

This commit is contained in:
Mathys Gasnier 2024-12-29 11:56:35 +01:00 committed by GitHub
parent 569e468cd8
commit 1fd8593da8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

106
README.md
View File

@ -153,59 +153,59 @@ For help starting out or to discuss clay, considering joining [the discord serve
## Summary ## Summary
- [High Level Documentation](#high-level-documentation) - [High Level Documentation](#high-level-documentation)
- [Building UI Hierarchies](#building-ui-hierarchies) - [Building UI Hierarchies](#building-ui-hierarchies)
- [Configuring Layout and Styling UI Elements](#configuring-layout-and-styling-ui-elements) - [Configuring Layout and Styling UI Elements](#configuring-layout-and-styling-ui-elements)
- [Element IDs](#element-ids) - [Element IDs](#element-ids)
- [Mouse, Touch and Pointer Interactions](#mouse-touch-and-pointer-interactions) - [Mouse, Touch and Pointer Interactions](#mouse-touch-and-pointer-interactions)
- [Scrolling Elements](#scrolling-elements) - [Scrolling Elements](#scrolling-elements)
- [Floating Elements](#floating-elements-absolute-positioning) - [Floating Elements](#floating-elements-absolute-positioning)
- [Custom Elements](#laying-out-your-own-custom-elements) - [Custom Elements](#laying-out-your-own-custom-elements)
- [Retained Mode Rendering](#retained-mode-rendering) - [Retained Mode Rendering](#retained-mode-rendering)
- [Visibility Culling](#visibility-culling) - [Visibility Culling](#visibility-culling)
- [Preprocessor Directives](#preprocessor-directives) - [Preprocessor Directives](#preprocessor-directives)
- [Bindings](#bindings-for-non-c) - [Bindings](#bindings-for-non-c)
- [Debug Tools](#debug-tools) - [Debug Tools](#debug-tools)
- [API](#api) - [API](#api)
- [Naming Conventions](#naming-conventions) - [Naming Conventions](#naming-conventions)
- [Public Functions](#public-functions) - [Public Functions](#public-functions)
- [Lifecycle](#lifecycle-for-public-functions) - [Lifecycle](#lifecycle-for-public-functions)
- [Clay_MinMemorySize](#clay_minmemorysize) - [Clay_MinMemorySize](#clay_minmemorysize)
- [Clay_CreateArenaWithCapacityAndMemory](#clay_createarenawithcapacityandmemory) - [Clay_CreateArenaWithCapacityAndMemory](#clay_createarenawithcapacityandmemory)
- [Clay_SetMeasureTextFunction](#clay_setmeasuretextfunction) - [Clay_SetMeasureTextFunction](#clay_setmeasuretextfunction)
- [Clay_SetMaxElementCount](clay_setmaxelementcount) - [Clay_SetMaxElementCount](clay_setmaxelementcount)
- [Clay_SetMaxMeasureTextCacheWordCount](#clay_setmaxmeasuretextcachewordcount) - [Clay_SetMaxMeasureTextCacheWordCount](#clay_setmaxmeasuretextcachewordcount)
- [Clay_Initialize](#clay_initialize) - [Clay_Initialize](#clay_initialize)
- [Clay_SetLayoutDimensions](#clay_setlayoutdimensions) - [Clay_SetLayoutDimensions](#clay_setlayoutdimensions)
- [Clay_SetPointerState](#clay_setpointerstate) - [Clay_SetPointerState](#clay_setpointerstate)
- [Clay_UpdateScrollContainers](#clay_updatescrollcontainers) - [Clay_UpdateScrollContainers](#clay_updatescrollcontainers)
- [Clay_BeginLayout](#clay_beginlayout) - [Clay_BeginLayout](#clay_beginlayout)
- [Clay_EndLayout](#clay_endlayout) - [Clay_EndLayout](#clay_endlayout)
- [Clay_Hovered](#clay_hovered) - [Clay_Hovered](#clay_hovered)
- [Clay_OnHover](#clay_onhover) - [Clay_OnHover](#clay_onhover)
- [Clay_PointerOver](#clay_pointerover) - [Clay_PointerOver](#clay_pointerover)
- [Clay_GetScrollContainerData](#clay_getscrollcontainerdata) - [Clay_GetScrollContainerData](#clay_getscrollcontainerdata)
- [Clay_GetElementId](#clay_getelementid) - [Clay_GetElementId](#clay_getelementid)
- [Element Macros](#element-macros) - [Element Macros](#element-macros)
- [CLAY](#clay-1) - [CLAY](#clay-1)
- [CLAY_ID](#clay_id) - [CLAY_ID](#clay_id)
- [CLAY_IDI](#clay_idi) - [CLAY_IDI](#clay_idi)
- [CLAY_LAYOUT](#clay_layout) - [CLAY_LAYOUT](#clay_layout)
- [CLAY_RECTANGLE](#clay_rectangle) - [CLAY_RECTANGLE](#clay_rectangle)
- [CLAY_TEXT](#clay_text) - [CLAY_TEXT](#clay_text)
- [CLAY_IMAGE](#clay_image) - [CLAY_IMAGE](#clay_image)
- [CLAY_SCROLL](#clay_scroll) - [CLAY_SCROLL](#clay_scroll)
- [CLAY_BORDER](#clay_border) - [CLAY_BORDER](#clay_border)
- [CLAY_FLOATING](#clay_floating) - [CLAY_FLOATING](#clay_floating)
- [CLAY_CUSTOM_ELEMENT](#clay_custom_element) - [CLAY_CUSTOM_ELEMENT](#clay_custom_element)
- [Data Structures & Defs](data-structures--definitions) - [Data Structures & Defs](data-structures--definitions)
- [Clay_String](#clay_string) - [Clay_String](#clay_string)
- [Clay_ElementId](#clay_elementid) - [Clay_ElementId](#clay_elementid)
- [Clay_RenderCommandArray](#clay_rendercommandarray) - [Clay_RenderCommandArray](#clay_rendercommandarray)
- [Clay_RenderCommand](#clay_rendercommand) - [Clay_RenderCommand](#clay_rendercommand)
- [Clay_ScrollContainerData](#clay_scrollcontainerdata) - [Clay_ScrollContainerData](#clay_scrollcontainerdata)
- [Clay_ErrorHandler](#clay_errorhandler) - [Clay_ErrorHandler](#clay_errorhandler)
- [Clay_ErrorData](#clay_errordata) - [Clay_ErrorData](#clay_errordata)
## High Level Documentation ## High Level Documentation