From 94028e7f4c572f17fe8693f20cd16daa229278e8 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Thu, 27 Oct 2022 20:22:52 +0530 Subject: [PATCH] Remove noise in `features/highlighting.feature` --- features/highlighting.feature | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/features/highlighting.feature b/features/highlighting.feature index c9f2b00a..9a547b53 100644 --- a/features/highlighting.feature +++ b/features/highlighting.feature @@ -4,29 +4,14 @@ Feature: Syntax Highlighting And make them pretty for all the world to see Scenario: highlighting an apache configuration - Given I have an "index.html" file with content: + Given I have an "index.html" page with content: """ - --- - --- - {% highlight apache %} RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php [QSA,L] {% endhighlight %} - - ```apache - RewriteEngine On - RewriteCond %{REQUEST_FILENAME} !-f - RewriteCond %{REQUEST_FILENAME} !-d - RewriteRule ^(.*)$ index.php [QSA,L] - ``` - """ - And I have a "_config.yml" file with content: - """ - kramdown: - input: GFM """ When I run jekyll build Then I should get a zero exit-status