Skip to content

Commit

Permalink
Fix template
Browse files Browse the repository at this point in the history
  • Loading branch information
fmvilas committed Jan 11, 2019
1 parent 9b19ab6 commit 91c05ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/markdown/.partials/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
### <a id="events-receive"/>Events a client can receive:
{{#each asyncapi.events.receive as |event index|}}
{{#if event.x-title}}
#### {{event.x-title}} {{#if message.deprecated}} (**deprecated**){{/if}}
#### {{event.x-title}} {{#if event.deprecated}} (**deprecated**){{/if}}
{{else}}
#### Event #{{index}} {{#if message.deprecated}} (**deprecated**){{/if}}
#### Event #{{index}} {{#if event.deprecated}} (**deprecated**){{/if}}
{{/if}}
{{> message message=event hideTitle=true}}
{{/each}}

### <a id="events-send"/>Events a client can send:
{{#each asyncapi.events.send as |event index|}}
{{#if event.x-title}}
#### {{event.x-title}} {{#if message.deprecated}} (**deprecated**){{/if}}
#### {{event.x-title}} {{#if event.deprecated}} (**deprecated**){{/if}}
{{else}}
#### Event #{{index}} {{#if message.deprecated}} (**deprecated**){{/if}}
#### Event #{{index}} {{#if event.deprecated}} (**deprecated**){{/if}}
{{/if}}
{{> message message=event hideTitle=true}}
{{/each}}

0 comments on commit 91c05ff

Please sign in to comment.