Hello, how are you?
I'm doing great!
This is a clickable chat bubble
Right-click enabled bubble
This is a bottom sheet.
Entered Code: @code
@code { private string? code; } ``` ``` -------------------------------- ### MudXCodeBlock Example Usage Source: https://github.com/mudxtra/mudx/blob/dev/_autodocs/api-reference/mudx-codeblock.md Demonstrates how to use the MudXCodeBlock component in a Blazor page, configuring syntax highlighting, line numbers, brace matching, and copy button position. ```razor @page "/code-demo"Current Size: @currentSize%
Entered Code: @code
@code { private string? code; } ``` -------------------------------- ### Create CodeFile Instances Source: https://github.com/mudxtra/mudx/blob/dev/_autodocs/api-reference/mudx-codeblock.md Demonstrates how to create instances of the CodeFile record for different programming languages. Ensure the correct CodeLanguage enum value is used for proper syntax highlighting. ```csharp var pythonFile = new CodeFile( Title: "main.py", Code: "def hello():\n print('Hello, World!')", Language: CodeLanguage.Python ); var jsonFile = new CodeFile( Title: "config.json", Code: @"{ \"name\": \"app\", \"version\": \"1.0\" }", Language: CodeLanguage.JSON ); ``` -------------------------------- ### MudXOutline Custom Scroll Container Example Source: https://github.com/mudxtra/mudx/blob/dev/_autodocs/api-reference/mudx-outline.md Example of configuring MudXOutline to use a custom scroll container. Specify the ScrollContainerSelector and SectionClassSelector to match your custom elements. ```cshtmlIntroduction content
Installation steps...
Usage information...