forked from microsoft/IoT-For-Beginners
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding ability to create pdf of content
- Loading branch information
Showing
8 changed files
with
2,329 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ | |
.vscode/launch.json | ||
.vscode/ipch | ||
.ipynb_checkpoints | ||
/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
- Introduction | ||
- [1](../1-getting-started/lessons/1-introduction-to-iot/README.md) | ||
- [2](../1-getting-started/lessons/2-deeper-dive/README.md) | ||
- [3](../1-getting-started/lessons/3-sensors-and-actuators/README.md) | ||
- [4](../1-getting-started/lessons/4-connect-internet/README.md) | ||
|
||
- Farm | ||
- [5](../2-farm/lessons/1-predict-plant-growth/README.md) | ||
- [6](../2-farm/lessons/2-detect-soil-moisture/README.md) | ||
- [7](../2-farm/lessons/3-automated-plant-watering/README.md) | ||
- [8](../2-farm/lessons/4-migrate-your-plant-to-the-cloud/README.md) | ||
- [9](../2-farm/lessons/5-migrate-application-to-the-cloud/README.md) | ||
- [10](../2-farm/lessons/6-keep-your-plant-secure/README.md) | ||
|
||
|
||
- Transport | ||
- [11](../3-transport/lessons/1-location-tracking/README.md) | ||
- [12](../3-transport/lessons/2-store-location-data/README.md) | ||
- [13](../3-transport/lessons/3-visualize-location-data/README.md) | ||
- [14](../3-transport/lessons/4-geofences/README.md) | ||
|
||
- Manufacturing | ||
- [15](../4-manufacturing/lessons/1-train-fruit-detector/README.md) | ||
- [16](../4-manufacturing/lessons/2-check-fruit-from-device/README.md) | ||
- [17](../4-manufacturing/lessons/3-run-fruit-detector-edge/README.md) | ||
- [18](../4-manufacturing/lessons/4-trigger-fruit-detector/README.md) | ||
|
||
|
||
- Retail | ||
- [19](../5-retail/lessons/1-train-stock-detector/README.md) | ||
- [20](../5-retail/lessons/2-check-stock-device/README.md) | ||
|
||
- Consumer | ||
- [21](../6-consumer/lessons/1-speech-recognition/README.md) | ||
- [22](../6-consumer/lessons/2-language-understanding/README.md) | ||
- [23](../6-consumer/lessons/3-spoken-feedback/README.md) | ||
- [24](../6-consumer/lessons/4-multiple-language-support/README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module.exports = { | ||
contents: ['docs/_sidebar.md'], // array of "table of contents" files path | ||
pathToPublic: 'pdf/readme.pdf', // path where pdf will stored | ||
pdfOptions: { | ||
margin: { top: '100px', bottom: '100px' } | ||
}, // reference: https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagepdfoptions | ||
removeTemp: true, // remove generated .md and .html or not | ||
emulateMedia: 'print', // mediaType, emulating by puppeteer for rendering pdf, 'print' by default (reference: https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pageemulatemediamediatype) | ||
}; |
Oops, something went wrong.