Skip to content

Commit dd0259c

Browse files
add md and mhtml conversions
1 parent d037352 commit dd0259c

24 files changed

+1501
-28
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# Aspose.Html Cloud Node.js SDK
22
[Aspose.Html Cloud](https://products.aspose.cloud/html) is a true [REST API](https://apireference.aspose.cloud/html/) that enables you to perform a wide range of html processing operations including manipulation and conversion in the cloud, with zero initial costs. Our Cloud SDKs are wrappers around REST API in various programming languages, allowing you to process html pages in language of your choice quickly and easily, gaining all benefits of strong types and IDE highlights.
33

4-
- API version: 22.9.1
5-
- Package version: 22.9.1
4+
- API version: 22.10.1
5+
- Package version: 22.10.1
66

77

8-
Possible conversions:
8+
### Possible conversions:
99
- HTML -> PDF, XPS, DOCX, MD, MHTML, JPEG, BMP, PNG, TIFF, GIF
1010
- EPUB -> PDF, XPS, DOCX, JPEG, BMP, PNG, TIFF, GIF
11+
- MD -> PDF, XPS, DOCX, HTML, MHTML, JPEG, BMP, PNG, TIFF, GIF
12+
- MHTML -> PDF, XPS, DOCX, JPEG, BMP, PNG, TIFF, GIF
1113

1214
## Installation
1315

@@ -48,7 +50,7 @@ Please, add the following [nmp package](https://www.npmjs.com/package/@asposeclo
4850
```json
4951
{
5052
"dependencies": {
51-
"@asposecloud/aspose-html-cloud":"^22.9.1"
53+
"@asposecloud/aspose-html-cloud":"^22.10.1"
5254
}
5355
}
5456
```

docs/ConversionApi.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22

33
All URIs are relative to *https://api.aspose.cloud/v4.0*
44

5+
### Possible conversions:
56
- HTML -> PDF, XPS, DOCX, MD, MHTML, JPEG, BMP, PNG, TIFF, GIF
67
- EPUB -> PDF, XPS, DOCX, JPEG, BMP, PNG, TIFF, GIF
8+
- MD -> PDF, XPS, DOCX, HTML, MHTML, JPEG, BMP, PNG, TIFF, GIF
9+
- MHTML -> PDF, XPS, DOCX, JPEG, BMP, PNG, TIFF, GIF
710

811
| Method | Description |
912
|---------------------------------------------------------|--------------------------------------------------------------------------|

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@asposecloud/aspose-html-cloud",
3-
"version": "22.9.1",
3+
"version": "22.10.1",
44
"description": "Aspose.Html Cloud Node.js SDK",
55
"license": "MIT",
66
"main": "./src/index.js",

src/ApiClient.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
/**
4646
* @module ApiClient
47-
* @version 22.9.1
47+
* @version 22.10.1
4848
*/
4949

5050
/**
@@ -124,7 +124,7 @@
124124
"User-Agent":conf['defaultUserAgent'],
125125
"Authorization":"Bearer " + this.accessToken,
126126
"x-aspose-client":"aspose.html-cloud nodejs sdk",
127-
"x-aspose-client-version":"22.9.1"
127+
"x-aspose-client-version":"22.10.1"
128128
};
129129
};
130130

src/api/ConversionApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const helper = require("../../test/helper");
4646
/**
4747
* Conversion service.
4848
* @module api/ConversionApi
49-
* @version 22.9.1
49+
* @version 22.10.1
5050
*/
5151

5252
/**

src/api/StorageApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
/**
7777
* Storage service.
7878
* @module api/StorageApi
79-
* @version 22.9.1
79+
* @version 22.10.1
8080
*/
8181

8282
/**

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
* </pre>
7171
* </p>
7272
* @module index
73-
* @version 22.9.1
73+
* @version 22.10.1
7474
*/
7575
var exports = {
7676
/**

src/model/DiscUsage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
/**
4646
* The DiscUsage model module.
4747
* @module model/DiscUsage
48-
* @version 22.9.1
48+
* @version 22.10.1
4949
*/
5050

5151
/**

src/model/Error.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
/**
4646
* The Error model module.
4747
* @module model/Error
48-
* @version 22.9.1
48+
* @version 22.10.1
4949
*/
5050

5151
/**

0 commit comments

Comments
 (0)