Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrap long lines in code blocks that do not wrap when rendered #205

Open
wants to merge 1 commit into
base: v1.0.0-dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 19 additions & 7 deletions versions/1.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,12 @@ This object MAY be extended with [Specification Extensions](#specification-exten
arazzo: 1.0.0
info:
title: A pet purchasing workflow
summary: This Arazzo Description showcases the workflow for how to purchase a pet through a sequence of API calls
summary: |
This Arazzo Description showcases the workflow for how to purchase a pet
through a sequence of API calls
description: |
This Arazzo Description walks you through the workflow and steps of `searching` for, `selecting`, and `purchasing` an available pet.
This Arazzo Description walks you through the workflow and steps of
`searching` for, `selecting`, and `purchasing` an available pet.
version: 1.0.1
sourceDescriptions:
- name: petStoreDescription
Expand All @@ -145,7 +148,9 @@ workflows:
description: This step demonstrates the user login step
operationId: loginUser
parameters:
# parameters to inject into the loginUser operation (parameter name must be resolvable at the referenced operation and the value is determined using {expression} syntax)
# parameters to inject into the loginUser operation (parameter name must
# be resolvable at the referenced operation and the value is determined
# using {expression} syntax)
- name: username
in: query
value: $inputs.username
Expand Down Expand Up @@ -202,7 +207,8 @@ This object MAY be extended with [Specification Extensions](#specification-exten
title: A pet purchasing workflow
summary: This workflow showcases how to purchase a pet through a sequence of API calls
description: |
This workflow walks you through the steps of searching for, selecting, and purchasing an available pet.
This workflow walks you through the steps of searching for, selecting, and
purchasing an available pet.
version: 1.0.1
```

Expand Down Expand Up @@ -271,7 +277,9 @@ steps:
description: This step demonstrates the user login step
operationId: loginUser
parameters:
# parameters to inject into the loginUser operation (parameter name must be resolvable at the referenced operation and the value is determined using {expression} syntax)
# parameters to inject into the loginUser operation (parameter name must
# be resolvable at the referenced operation and the value is determined
# using {expression} syntax)
- name: username
in: query
value: $inputs.username
Expand Down Expand Up @@ -320,7 +328,9 @@ stepId: loginStep
description: This step demonstrates the user login step
operationId: loginUser
parameters:
# parameters to inject into the loginUser operation (parameter name must be resolvable at the referenced operation and the value is determined using {expression} syntax)
# parameters to inject into the loginUser operation (parameter name must
# be resolvable at the referenced operation and the value is determined
# using {expression} syntax)
- name: username
in: query
value: $inputs.username
Expand All @@ -344,7 +354,9 @@ steps:
description: This step demonstrates the user login step
operationId: loginUser
parameters:
# parameters to inject into the loginUser operation (parameter name must be resolvable at the referenced operation and the value is determined using {expression} syntax)
# parameters to inject into the loginUser operation (parameter name must
# be resolvable at the referenced operation and the value is determined
# using {expression} syntax)
- name: username
in: query
value: $inputs.username
Expand Down