From 9a4fd05c73dd42b7ac7575390c0208c79b23701f Mon Sep 17 00:00:00 2001 From: Erick Belfort Date: Mon, 4 Dec 2017 11:34:45 -0500 Subject: [PATCH] fix(documentation): fix heading tags --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 36f5d8b..9398772 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ -#Plugins +# Plugins Build Status [![Build Status](https://travis-ci.org/apigee/microgateway-plugins.svg?branch=accumulate-request-fixes)](https://travis-ci.org/apigee/microgateway-plugins) -##Overview +## Overview This repo contains plugins for the [microgateway-core project](https://github.com/apigee/microgateway-core). These plugins can be loaded into the microgateway calling the load plugin method -##Building a plugin +## Building a plugin must contain an init method which returns an object literal with all of the handlers ```javascript @@ -35,13 +35,14 @@ the available handlers are * onclose_response * onerror_response -the handler signature will look like +The handler signature will look like : ```javascript function(sourceRequest,sourceResponse,[options],next){} ``` -* sourceRequest: the request from the northbound server -* sourceResponse the response to the northbound server + +* sourceRequest: the request from the northbound server; +* sourceResponse the response to the northbound server; * options: are the full scope of fields you might need to operate on. ```javascript