Remove noise in `features/highlighting.feature`
This commit is contained in:
parent
91e00b2082
commit
94028e7f4c
|
@ -4,29 +4,14 @@ Feature: Syntax Highlighting
|
||||||
And make them pretty for all the world to see
|
And make them pretty for all the world to see
|
||||||
|
|
||||||
Scenario: highlighting an apache configuration
|
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 %}
|
{% highlight apache %}
|
||||||
RewriteEngine On
|
RewriteEngine On
|
||||||
RewriteCond %{REQUEST_FILENAME} !-f
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
RewriteCond %{REQUEST_FILENAME} !-d
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
RewriteRule ^(.*)$ index.php [QSA,L]
|
RewriteRule ^(.*)$ index.php [QSA,L]
|
||||||
{% endhighlight %}
|
{% 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
|
When I run jekyll build
|
||||||
Then I should get a zero exit-status
|
Then I should get a zero exit-status
|
||||||
|
|
Loading…
Reference in New Issue