Skip to content

Commit ff7863a

Browse files
committed
Fix the codacy markdown issues
Signed-off-by: Fabio José <[email protected]>
1 parent df0c2de commit ff7863a

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Javascript SDK for CloudEvents
55

66
> This is a WIP
77
8-
# Repository Structure
8+
## Repository Structure
99

1010
```text
1111
├── index.js
@@ -52,7 +52,7 @@ Javascript SDK for CloudEvents
5252

5353
* `test/cloudevent_spec_0_2.js`: unit testing for spec 0.2
5454

55-
# Unit Testing
55+
## Unit Testing
5656

5757
The unit test checks the result of formatted payload and the constraints.
5858

@@ -62,9 +62,9 @@ npm test
6262

6363
```
6464

65-
# The API
65+
## The API
6666

67-
## `Cloudevent` class
67+
### `Cloudevent` class
6868

6969
```js
7070

@@ -80,7 +80,7 @@ String Cloudevent.toString()
8080

8181
```
8282

83-
## `Formatter` classes
83+
### `Formatter` classes
8484

8585
Every formatter class must implement these methods to work properly.
8686

@@ -115,7 +115,7 @@ Spec(Cloudevent)
115115
Spec.check()
116116

117117
```
118-
## `Binding` classes
118+
### `Binding` classes
119119

120120
Every Binding class must implement these methods to work properly.
121121

@@ -133,7 +133,7 @@ Binding.emit(cloudevent)
133133

134134
```
135135

136-
# How to use
136+
## How to use
137137

138138
The `Cloudevent` constructor arguments.
139139

@@ -147,7 +147,7 @@ Cloudevent(spec, format);
147147

148148
```
149149

150-
## How to construct instances?
150+
### How to construct instances?
151151

152152
```js
153153
/*
@@ -186,7 +186,7 @@ cloudevent02
186186

187187
```
188188

189-
## How to get the formatted payload?
189+
### How to get the formatted payload?
190190

191191
```js
192192
var cloudevent = new Cloudevent()
@@ -200,7 +200,7 @@ var formatted = cloudevent.format();
200200

201201
```
202202

203-
## How to emit an event?
203+
### How to emit an event?
204204

205205
```js
206206
// The event

0 commit comments

Comments
 (0)