From b849045d12e8459bf58f8545df7b10526ab7f589 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 2 Jan 2021 10:10:25 -0800 Subject: [PATCH] Fix Markdown test It previously relied on multiple trailing newlines and that is not allowed by our new YAML format. --- langs/markdown.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/langs/markdown.yaml b/langs/markdown.yaml index 8c848e5..6295b4d 100644 --- a/langs/markdown.yaml +++ b/langs/markdown.yaml @@ -25,4 +25,8 @@ format: run: | prettier --no-config --stdin-filepath=format.md input: | - Hello, world! + 1. First + 3. Second + output: | + 1. First + 2. Second