From 988eba2bd75df8db961e4aa6195ac4a602e48b57 Mon Sep 17 00:00:00 2001 From: Thomas Boulier <14161960+tomboulier@users.noreply.github.com> Date: Sat, 9 May 2026 10:36:43 +0200 Subject: [PATCH] fix Project Structure tree formatting in README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Project Structure section was rendered as a single paragraph because the directory tree wasn't wrapped in a fenced code block. Markdown collapsed the indentation and newlines into running text, hiding the tree shape. Wrap the tree in a triple-backtick fence so it renders as preformatted text and preserves the alignment of ├─,└─, and │. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7bee952..984ddbf 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ https://doi.org/10.48550/arxiv.2509.07325 ## 📂 Project Structure - +``` CancerGUIDE/ ├── scripts/ │ ├── benchmark_generation/ # Generate benchmarks (self-consistency, synthetic, cross-model) @@ -47,6 +47,7 @@ CancerGUIDE/ │ └── heatmap_results.json # Aggregated numeric results for heatmaps ├── bash/ # Ordered bash scripts to reproduce paper analyses └── README.md +``` ---