included a button to export the chat content directly to a Markdown file

This commit is contained in:
Nils Kruthoff 2026-07-29 13:31:32 +02:00
parent 953c1c1dd8
commit c69b30bad2
No known key found for this signature in database
GPG Key ID: A5C0151B4DDB172C

View File

@ -71,7 +71,10 @@
@T("OpenDocument Text (.odt)")
</MudTooltip>
</MudMenuItem>
<MudMenuItem OnClick="@(() => this.ExportDocument(FileExportFormat.HTML))" Icon="@Icons.Custom.FileFormats.FileCode">
<MudMenuItem OnClick="@(() => this.ExportDocument(FileExportFormat.MARKDOWN))" Icon="@Icons.Material.Filled.TextFields">
@T("Markdown (.md)")
</MudMenuItem>
<MudMenuItem OnClick="@(() => this.ExportDocument(FileExportFormat.HTML))" Icon="@Icons.Material.Filled.Html">
<MudTooltip Text="@T("Webpage")">
@T("Hypertext (.html)")
</MudTooltip>