Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 4a1c34e

Browse files
committed
style
1 parent 7f08caf commit 4a1c34e

File tree

1 file changed

+11
-30
lines changed

1 file changed

+11
-30
lines changed

README.md

Lines changed: 11 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ test.all(common)
4949
## Go
5050

5151
> WIP
52+
5253
# API
5354

5455
A valid (read: that follows this interface) IPFS core implementation, must expose the following API.
@@ -59,9 +60,7 @@ A valid (read: that follows this interface) IPFS core implementation, must expos
5960

6061
> Create a new MerkleDAG node, using a specific layout. Caveat: So far, only UnixFS object layouts are supported.
6162
62-
##### `Go`
63-
64-
**WIP**
63+
##### `Go` **WIP**
6564

6665
##### `JavaScript` - ipfs.object.new(layout, [callback])
6766

@@ -79,9 +78,7 @@ If no `callback` is passed, a promise is returned.
7978

8079
> Store an MerkleDAG node.
8180
82-
##### `Go`
83-
84-
**WIP**
81+
##### `Go` **WIP**
8582

8683
##### `JavaScript` - ipfs.object.put(obj, [options, callback])
8784

@@ -107,9 +104,7 @@ If no `callback` is passed, a promise is returned.
107104

108105
> DESCRIPTION
109106
110-
##### `Go`
111-
112-
**WIP**
107+
##### `Go` **WIP**
113108

114109
##### `JavaScript` - ipfs.object.get(multihash, [options, callback])
115110

@@ -130,9 +125,7 @@ If no `callback` is passed, a promise is returned.
130125

131126
> Returns the Data field of an object
132127
133-
##### `Go`
134-
135-
**WIP**
128+
##### `Go` **WIP**
136129

137130
##### `JavaScript` - ipfs.object.data(multihash, [options, callback])
138131
`multihash` is a [multihash]() which can be passed as:
@@ -152,9 +145,7 @@ If no `callback` is passed, a promise is returned.
152145

153146
> Returns the Links field of an object
154147
155-
##### `Go`
156-
157-
**WIP**
148+
##### `Go` **WIP**
158149

159150
##### `JavaScript` - ipfs.object.links(multihash, [options, callback])
160151

@@ -179,9 +170,7 @@ If no `callback` is passed, a promise is returned.
179170

180171
> Returns stats about an Object
181172
182-
##### `Go`
183-
184-
**WIP**
173+
##### `Go` **WIP**
185174

186175
##### `JavaScript` - ipfs.object.stat(multihash, [options, callback])
187176

@@ -221,9 +210,7 @@ If no `callback` is passed, a promise is returned.
221210

222211
> Add a Link to an existing MerkleDAG Object
223212
224-
##### `Go`
225-
226-
**WIP**
213+
##### `Go` **WIP**
227214

228215
##### `JavaScript` - ipfs.object.patch.addLink(multihash, DAGLink, [options, callback])
229216

@@ -250,9 +237,7 @@ If no `callback` is passed, a promise is returned.
250237

251238
> Remove a Link from an existing MerkleDAG Object
252239
253-
##### `Go`
254-
255-
**WIP**
240+
##### `Go` **WIP**
256241

257242
##### `JavaScript` - ipfs.object.patch.rmLink(multihash, DAGLink, [options, callback])
258243

@@ -279,9 +264,7 @@ If no `callback` is passed, a promise is returned.
279264

280265
> Append Data to the Data field of an existing node.
281266
282-
##### `Go`
283-
284-
**WIP**
267+
##### `Go` **WIP**
285268

286269
##### `JavaScript` - ipfs.object.patch.appendData(multihash, data, [options, callback])
287270

@@ -308,9 +291,7 @@ If no `callback` is passed, a promise is returned.
308291

309292
> Reset the Data field of a MerkleDAG Node to new Data
310293
311-
##### `Go`
312-
313-
**WIP**
294+
##### `Go` **WIP**
314295

315296
##### `JavaScript` - ipfs.object.patch.setData(multihash, data, [options, callback])
316297

0 commit comments

Comments
 (0)