Skip to content

Commit 777495d

Browse files
committed
fork instructions & scope this pkg
1 parent 8b90582 commit 777495d

File tree

4 files changed

+17
-19
lines changed

4 files changed

+17
-19
lines changed

README.md

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
1-
Generate Google Slides from markdown & HTML. Run from the command line or embed in another
2-
application.
1+
Generate Google Slides from markdown & HTML. Run from the command line or embed in another application. This project was developed as an example of how to use the [Google Slides (REST) API](https://developers.google.com/slides). While it does not yet produce stunningly beautiful decks, you are encouraged to use this tool for quickly prototyping presentations. Contributions are welcome.
32

4-
This project was developed as an example of how to use the
5-
[Slides API](https://developers.google.com/slides).
3+
**NOTE**: This is a fork of the original repo at <https://github.com/googleworkspace/md2googleslides>. The project is still "actively" maintained, but some users can't wait for the PRs from the original maintainer. Upstream changes will be merged as necessary.
64

7-
While it does not yet produce stunningly beautiful decks, you are encouraged to use
8-
this tool for quickly prototyping presentations.
9-
10-
Contributions are welcome.
115

126
## Installation and usage
137

14-
For command line use, install md2gslides globally:
8+
For command line use, install `md2gslides` globally:
159

1610
```sh
17-
npm install -g md2gslides
11+
npm install -g @wescpy/md2gslides
1812
```
1913

2014
Then get your OAuth client ID credentials:
@@ -33,7 +27,7 @@ After installing, import your slides by running:
3327
md2gslides slides.md --title "Talk Title"
3428
```
3529

36-
This will generate new Google Slides in your account with title `Talk Title`.
30+
This will generate new Google Slides in your account with title `Talk Title`.
3731

3832
NOTE: The first time the command is run you will be prompted for authorization. OAuth token
3933
credentials are stored locally in a file named `~/.md2googleslides/credentials.json`.
@@ -440,5 +434,4 @@ See [CONTRIBUTING](CONTRIBUTING.md) for additional terms.
440434

441435
## License
442436

443-
This library is licensed under Apache 2.0. Full license text is
444-
available in [LICENSE](LICENSE).
437+
This library is licensed under Apache 2.0. Full license text is available in [LICENSE](LICENSE).

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "md2gslides",
2+
"name": "@wescpy/md2gslides",
33
"engines": {
44
"node": ">=12.0.0"
55
},
6-
"version": "0.5.1",
6+
"version": "0.6",
77
"description": "Convert Markdown to Google Slides",
88
"main": "index.js",
99
"files": [

yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2880,6 +2880,11 @@ fs.realpath@^1.0.0:
28802880
resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
28812881
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
28822882

2883+
fsevents@~2.3.1:
2884+
version "2.3.2"
2885+
resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"
2886+
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
2887+
28832888
function-bind@^1.1.1:
28842889
version "1.1.1"
28852890
resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"

0 commit comments

Comments
 (0)