From 86752d1f23a732368942840a55befa6cbb2cb2ee Mon Sep 17 00:00:00 2001 From: Sam Scholten Date: Thu, 27 Nov 2025 16:12:56 +1100 Subject: Clean up 2-column spacing: remove column gap, fix padding symmetry, remove redundant rules --- demo-standard.md | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'demo-standard.md') diff --git a/demo-standard.md b/demo-standard.md index 1cf44df..72f7d9b 100644 --- a/demo-standard.md +++ b/demo-standard.md @@ -192,12 +192,16 @@ Large vertical space (3em) - for major separations ## Spacing Examples +
+ ```python def calculate(): result = 42 return result ``` +
+
The function returns a simple value. @@ -228,12 +232,16 @@ $\quad \text{score} = \text{tf} \times \log\frac{|D|}{|d_t|}$ **And code blocks:** + +
+ ```python def score(term, doc): tf = freq(term, doc) idf = log(N / df) return tf * idf ``` +
-- cgit v1.2.3