forked from x97mdr/pickles
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from aaronjrich/master
Bug fix for markdown support fix for markdown support
- Loading branch information
Showing
20 changed files
with
2,518 additions
and
23,217 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
src/Pickles/Examples/Features/00BasicGherkin/BasicGherkin.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/Pickles/Examples/Features/01TestRunner/TestRunnerIsNotImportant.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
src/Pickles/Examples/Features/14MarkdownExample/MarkdownExamples.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
Feature: Sample Markdown Feature | ||
Header 1 | ||
======== | ||
|
||
Header 2 | ||
-------- | ||
|
||
This is a *significant* word | ||
|
||
1. Ordered #1 | ||
2. Ordered #2 | ||
3. Ordered #3 | ||
|
||
- Unordered #1 | ||
- Unordered #2 | ||
- Unordered #3 | ||
|
||
Horizontal Rule: | ||
- - - | ||
|
||
Table example: | ||
| First Header | Second Header | | ||
| ------------- | ------------- | | ||
| Content Cell | Content Cell | | ||
| Content Cell | Content Cell | | ||
|
||
- - - | ||
|
||
Scenario: Sample Markdown Scenario Example | ||
|
||
This is **important** text | ||
|
||
Code Block: | ||
``` | ||
var x = 2; | ||
``` | ||
|
||
Apple | ||
: Pomaceous fruit of plants of the genus Malus in | ||
the family Rosaceae. | ||
: An American computer company. | ||
|
||
Orange | ||
: The fruit of an evergreen tree of the genus Citrus. | ||
|
||
Given this | ||
Then that | ||
|
||
@AddingATag | ||
Scenario Outline: Sample Markdown Scenario Outline Example | ||
|
||
This is [an example link to pickles](https://github.com/picklesdoc/pickles/wiki "Pickles") inline link. | ||
|
||
[This link to pickles](https://github.com/picklesdoc/pickles/wiki) has no title attribute. | ||
|
||
Given this: <test> | ||
Then that: <test2> | ||
|
||
Examples: | ||
|
||
This __message__ is important too and is for an *Example* table. | ||
|
||
| test | test2 | | ||
| value | value2 | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.