From f2c8273612aad8b00f9503f9be771c31c322081a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 23 Jul 2025 15:53:51 +0000 Subject: [PATCH] Fix code alignment by adding space to align .Replace method calls Co-authored-by: emako <24737061+emako@users.noreply.github.com> --- .../QuickLook.Plugin.MarkdownViewer/MarkdownPanel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QuickLook.Plugin/QuickLook.Plugin.MarkdownViewer/MarkdownPanel.cs b/QuickLook.Plugin/QuickLook.Plugin.MarkdownViewer/MarkdownPanel.cs index 53bbe87..d7b66a9 100644 --- a/QuickLook.Plugin/QuickLook.Plugin.MarkdownViewer/MarkdownPanel.cs +++ b/QuickLook.Plugin/QuickLook.Plugin.MarkdownViewer/MarkdownPanel.cs @@ -94,7 +94,7 @@ public class MarkdownPanel : WebpagePanel } var html = template.Replace("{{content}}", content) - .Replace("{{rtl}}", isRtl ? "rtl" : "ltr"); + .Replace("{{rtl}}", isRtl ? "rtl" : "ltr"); return html; }