From 92578eab2d358753a168a03ee19ebec80f37457a Mon Sep 17 00:00:00 2001 From: Andrew <15331990+ahuang11@users.noreply.github.com> Date: Sun, 14 May 2023 17:44:21 -0700 Subject: [PATCH] Add overflow wrap for markdown (#4834) --- panel/dist/css/markdown.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/panel/dist/css/markdown.css b/panel/dist/css/markdown.css index b47e57eae4..e38c35eefe 100644 --- a/panel/dist/css/markdown.css +++ b/panel/dist/css/markdown.css @@ -115,3 +115,7 @@ table, th, td { border-collapse: collapse; padding: 5px; } + +p { + overflow-wrap: break-word; +}