joker1007/ghost_writer

View on GitHub
lib/ghost_writer/writer/templates/markdown.erb

Summary

Maintainability
Test Coverage
<% if header %>
## <%= title %>
<% end %>

### <%= description %>

#### access path:

```
<%= "#{request_method} #{path_info}" %>
```

#### request params:

```json
<%= serialized_params %>
```

#### status code:

```
<%= status_code %>
```

#### response:

```<%= response_format %>
<%= response_body %>
```

Generated by <%= description %> at <%= location %>

--------------------------------