Support Markdown with Gherkin #612
RvRijsselt
started this conversation in
Ideas
Replies: 1 comment 4 replies
-
Example: ## Feature: Staying alive
This is about actually staying alive,
not the [Bee Gees song](https://www.youtube.com/watch?v=I_izvAbhExY).
```mermaid
flowchart LR
User --> A([Eat cucumber])
User --> B([Blend cucumber])
B --> C([Drink juice])
```
### Rule: If you don't eat you die

`@important` `@essential`
#### Scenario Outline: eating
* Given there are `<start>` cucumbers
* When I eat `<eat>` cucumbers
* Then I should have `<left>` cucumbers
##### Examples:
| start | eat | left |
| ----- | --- | ---- |
| 12 | 5 | 7 |
| 20 | 5 | 15 | |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Add support for the
.feature.md
dialect.Refer to:
https://github.com/cucumber/gherkin/blob/main/MARKDOWN_WITH_GHERKIN.md
Pros of Markdown with Gherkin:
Beta Was this translation helpful? Give feedback.
All reactions