From fa4942e838a239e1a2e96904fbeee654590a8f02 Mon Sep 17 00:00:00 2001 From: Peter Tanner Date: Sun, 17 Nov 2024 04:23:39 +0800 Subject: [PATCH] Fix template {{ --- _posts/2024-02-16-JLCPCB-shipping-price-hack.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2024-02-16-JLCPCB-shipping-price-hack.md b/_posts/2024-02-16-JLCPCB-shipping-price-hack.md index 5322766..2217e74 100644 --- a/_posts/2024-02-16-JLCPCB-shipping-price-hack.md +++ b/_posts/2024-02-16-JLCPCB-shipping-price-hack.md @@ -60,9 +60,9 @@ All prices in AUD. | 1.19 | 31.59 | 63.01 | 43.06 | 64.40 | 46.65$A | Simulated mass | ```mathematica -prices = {{0.18, 3.18}, {0.29, 3.18}, {0.33, 14.35}, {0.39, +prices = { {0.18, 3.18}, {0.29, 3.18}, {0.33, 14.35}, {0.39, 14.35}, {0.46, 14.35}, {0.56, 19.80}, {0.59, 20.68}, {0.60, - 20.68}, {0.61, 20.68}, {0.67, 23.39}, {0.8, 23.61}, {1.19, 31.59}} + 20.68}, {0.61, 20.68}, {0.67, 23.39}, {0.8, 23.61}, {1.19, 31.59} } ListPlot[prices] ```