From b6d03afe568013eaa45a6bc62a9cc3c041a92444 Mon Sep 17 00:00:00 2001 From: 6d486f49 Date: Thu, 11 Jun 2026 12:29:57 -0400 Subject: [PATCH] ... --- ET/Web/Services/DocsService.cs | 1 + ET/Web/wwwroot/css/app.css | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ET/Web/Services/DocsService.cs b/ET/Web/Services/DocsService.cs index f1c3275..0fc83e0 100644 --- a/ET/Web/Services/DocsService.cs +++ b/ET/Web/Services/DocsService.cs @@ -11,6 +11,7 @@ public class DocsService { private static readonly MarkdownPipeline Pipeline = new MarkdownPipelineBuilder() .UseYamlFrontMatter() + .UsePipeTables() .Build(); private static readonly HashSet ImageExtensions = new(StringComparer.OrdinalIgnoreCase) diff --git a/ET/Web/wwwroot/css/app.css b/ET/Web/wwwroot/css/app.css index 77c75fc..8473261 100644 --- a/ET/Web/wwwroot/css/app.css +++ b/ET/Web/wwwroot/css/app.css @@ -339,11 +339,14 @@ table.frontmatter td.fm-key { .markdown-body table { width: 100%; + max-width: 100%; + display: block; + overflow-x: auto; + overflow-y: hidden; border-collapse: separate; border-spacing: 0; margin: 1.5rem 0; border-radius: 12px; - overflow: hidden; border: 1px solid var(--border-color); } @@ -672,4 +675,4 @@ table.frontmatter td.fm-key { color: var(--text-muted) !important; padding: 3rem !important; text-align: center !important; -} \ No newline at end of file +}