Fix indentation of toBlob()/toImage() docs
It isn't considered a code block if it isn't indented properly.
This commit is contained in:
parent
caf0ecc99b
commit
ce534b85c1
14
docs/API.md
14
docs/API.md
|
@ -384,7 +384,7 @@ the screen encoded as [`ImageData`][mdn-imagedata].
|
||||||
|
|
||||||
##### Syntax
|
##### Syntax
|
||||||
|
|
||||||
RFB.getImageData();
|
RFB.getImageData( );
|
||||||
|
|
||||||
#### RFB.machineReboot()
|
#### RFB.machineReboot()
|
||||||
|
|
||||||
|
@ -476,9 +476,9 @@ screen encoded as [`Blob`][mdn-blob].
|
||||||
|
|
||||||
##### Syntax
|
##### Syntax
|
||||||
|
|
||||||
RFB.toDataURL(callback);
|
RFB.toDataURL( callback );
|
||||||
RFB.toDataURL(callback, type);
|
RFB.toDataURL( callback, type );
|
||||||
RFB.toDataURL(callback, type, quality);
|
RFB.toDataURL( callback, type, quality );
|
||||||
|
|
||||||
###### Parameters
|
###### Parameters
|
||||||
|
|
||||||
|
@ -500,9 +500,9 @@ of an `img` tag.
|
||||||
|
|
||||||
##### Syntax
|
##### Syntax
|
||||||
|
|
||||||
RFB.toDataURL();
|
RFB.toDataURL( );
|
||||||
RFB.toDataURL(type);
|
RFB.toDataURL( type );
|
||||||
RFB.toDataURL(type, encoderOptions);
|
RFB.toDataURL( type, encoderOptions );
|
||||||
|
|
||||||
###### Parameters
|
###### Parameters
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue