@liascript/exporter 2.6.36--0.16.11 → 2.6.38--0.16.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +187 -82
- package/dist/index.js +13 -13
- package/package.json +1 -1
- package/src/colorize.ts +115 -0
- package/src/export/android.ts +42 -13
- package/src/export/ims.ts +31 -8
- package/src/export/pdf.ts +100 -42
- package/src/export/project.ts +52 -16
- package/src/export/rdf.ts +41 -14
- package/src/export/scorm12.ts +26 -5
- package/src/index.ts +22 -14
- package/output.html +0 -428
package/README.md
CHANGED
|
@@ -59,88 +59,193 @@ $ liaex
|
|
|
59
59
|
No input defined
|
|
60
60
|
LiaScript-Exporter
|
|
61
61
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
-
|
|
67
|
-
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
--
|
|
92
|
-
--
|
|
93
|
-
--
|
|
94
|
-
--
|
|
95
|
-
--
|
|
96
|
-
|
|
97
|
-
--
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
--
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
--
|
|
116
|
-
|
|
117
|
-
--
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
--
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
--
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
--
|
|
140
|
-
--
|
|
141
|
-
--
|
|
142
|
-
--
|
|
143
|
-
|
|
62
|
+
Export your LiaScript Markdown files to different formats. The following
|
|
63
|
+
commandline options are available. Based on the selected output format,
|
|
64
|
+
additional options can be used.
|
|
65
|
+
|
|
66
|
+
-h --help show this help
|
|
67
|
+
-i --input file to be used as input
|
|
68
|
+
-p --path path to be packed, if not set, the path of the input
|
|
69
|
+
file is used
|
|
70
|
+
-o --output output file name (default is output), the ending is
|
|
71
|
+
define by the format
|
|
72
|
+
-s --style additional styling to passed to the export, can be
|
|
73
|
+
used for fixes, such as "height: 100vh; width: 100%;
|
|
74
|
+
border: 2px;"
|
|
75
|
+
-f --format scorm1.2, scorm2004, json, fullJson, web, ims, pdf,
|
|
76
|
+
android, linkedData (default is json)
|
|
77
|
+
-v --version output the current version
|
|
78
|
+
-k --key responsive voice key
|
|
79
|
+
|
|
80
|
+
SCORM settings:
|
|
81
|
+
|
|
82
|
+
SCORM (Sharable Content Object Reference Model) 1.2 & 2004 are standards for
|
|
83
|
+
e-learning content that can be imported into LMS platforms like Moodle,
|
|
84
|
+
Blackboard, and others.
|
|
85
|
+
|
|
86
|
+
Learn more: https://scorm.com/scorm-explained/
|
|
87
|
+
|
|
88
|
+
Known SCORM configurations per LMS:
|
|
89
|
+
https://www.npmjs.com/package/@liascript/exporter#scorm-examples
|
|
90
|
+
|
|
91
|
+
--scorm-organization set the organization title
|
|
92
|
+
--scorm-masteryScore set the scorm masteryScore (a value between 0
|
|
93
|
+
-- 100), default is 0
|
|
94
|
+
--scorm-typicalDuration set the scorm duration, default is PT0H5M0S
|
|
95
|
+
--scorm-iframe use an iframe, when a SCORM starting
|
|
96
|
+
parameter is not working
|
|
97
|
+
--scorm-embed embed the Markdown into the JS code,
|
|
98
|
+
use in Moodle 4 to handle restrictions with dynamic
|
|
99
|
+
loading
|
|
100
|
+
|
|
101
|
+
IMS settings:
|
|
102
|
+
|
|
103
|
+
IMS (Instructional Management Systems) Content Package is an interoperable
|
|
104
|
+
standard format for packaging learning content between different LMSes.
|
|
105
|
+
|
|
106
|
+
Learn more: https://www.imsglobal.org/content/packaging/index.html
|
|
107
|
+
|
|
108
|
+
--ims-indexeddb Use IndexedDB to store data persistently
|
|
109
|
+
|
|
110
|
+
WEB settings:
|
|
111
|
+
|
|
112
|
+
Pack the project into a self contained web project that can be hosted
|
|
113
|
+
everywhere.
|
|
114
|
+
|
|
115
|
+
--web-iframe Use an iframed version to hide the
|
|
116
|
+
course URL.
|
|
117
|
+
--web-indexeddb This will allow to store data within the
|
|
118
|
+
browser using indexeddb, you can optionally pass a
|
|
119
|
+
unique key (by default one is generated randomly).
|
|
120
|
+
--web-zip By default the result is not
|
|
121
|
+
zipped, you can change this with this parameter.
|
|
122
|
+
|
|
123
|
+
Android settings:
|
|
124
|
+
|
|
125
|
+
Android export generates a native Android application (.apk) from your LiaScript
|
|
126
|
+
course using Capacitor. This requires the Android SDK to be installed on your
|
|
127
|
+
system.
|
|
128
|
+
|
|
129
|
+
Learn more:
|
|
130
|
+
- Capacitor: https://capacitorjs.com/
|
|
131
|
+
- Android SDK: https://developer.android.com/studio
|
|
132
|
+
|
|
133
|
+
--android-sdk Specify sdk.dir which is required for
|
|
134
|
+
building.
|
|
135
|
+
--android-appName Name of the App (Main-title is used as
|
|
136
|
+
default).
|
|
137
|
+
--android-appId Required to identify your App reverse url
|
|
138
|
+
such as io.github.liascript
|
|
139
|
+
--android-icon Optional icon with 1024x1024 px
|
|
140
|
+
--android-splash Optional splash image with 2732x2732 px
|
|
141
|
+
--android-splashDuration Duration for splash-screen default 0 milliseconds
|
|
142
|
+
--android-preview Open course in Android-Studio
|
|
143
|
+
|
|
144
|
+
PDF settings:
|
|
145
|
+
|
|
146
|
+
PDF export generates printable documents from your LiaScript course using
|
|
147
|
+
Puppeteer, a headless Chrome browser automation tool. This allows for
|
|
148
|
+
high-quality rendering of all course elements including interactive content.
|
|
149
|
+
|
|
150
|
+
Learn more: https://pptr.dev/
|
|
151
|
+
|
|
152
|
+
--pdf-stylesheet Inject an local CSS for changing the
|
|
153
|
+
appearance.
|
|
154
|
+
--pdf-theme LiaScript themes: default, turquoise,
|
|
155
|
+
blue, red, yellow
|
|
156
|
+
--pdf-timeout Set an additional time horizon to wait
|
|
157
|
+
until finished.
|
|
158
|
+
--pdf-preview Open preview-browser (default false),
|
|
159
|
+
print not possible
|
|
160
|
+
|
|
161
|
+
The following are puppeteer specific settings.
|
|
162
|
+
|
|
163
|
+
Learn more:
|
|
164
|
+
https://github.com/puppeteer/puppeteer/blob/main/docs/api.md#pagepdfoptions
|
|
165
|
+
|
|
166
|
+
--pdf-scale Scale of the webpage rendering.
|
|
167
|
+
Defaults to 1. Scale amount must be between 0.1 and
|
|
168
|
+
2.
|
|
169
|
+
--pdf-displayHeaderFooter Display header and footer. Defaults to false.
|
|
170
|
+
--pdf-headerTemplate HTML template for the print header, inject
|
|
171
|
+
classes date, title, url, pageNumber, totalPages
|
|
172
|
+
--pdf-footerTemplate HTML template for the print footer. Should use
|
|
173
|
+
the same format as the headerTemplate
|
|
174
|
+
--pdf-printBackground Print background graphics. Defaults to false
|
|
175
|
+
--pdf-landscape Paper orientation. Defaults to false.
|
|
176
|
+
--pdf-pageRanges Paper ranges to print, e.g., "1-5, 8,
|
|
177
|
+
11-13"
|
|
178
|
+
--pdf-format Paper format. If set, takes priority
|
|
179
|
+
over width or height options. Defaults to a4.
|
|
180
|
+
--pdf-width Paper width, accepts values labeled
|
|
181
|
+
with units.
|
|
182
|
+
--pdf-height Paper height, accepts values labeled
|
|
183
|
+
with units.
|
|
184
|
+
--pdf-margin-top Top margin, accepts values labeled with
|
|
185
|
+
units.
|
|
186
|
+
--pdf-margin-right Right margin, accepts values labeled with
|
|
187
|
+
units.
|
|
188
|
+
--pdf-margin-bottom Bottom margin, accepts values labeled with
|
|
189
|
+
units.
|
|
190
|
+
--pdf-margin-left Left margin, accepts values labeled with
|
|
191
|
+
units.
|
|
192
|
+
--pdf-preferCSSPageSize Give any CSS @page size declared in the page
|
|
193
|
+
priority over what is declared in width and height
|
|
194
|
+
or format options.
|
|
195
|
+
--pdf-omitBackground Hides default white background and allows
|
|
196
|
+
capturing screenshots with transparency. Defaults to
|
|
197
|
+
true.
|
|
198
|
+
|
|
199
|
+
Project settings:
|
|
200
|
+
|
|
201
|
+
A project is a bundle for multiple LiaScript resource into a single project
|
|
202
|
+
overview page, based on a provided yaml description.
|
|
203
|
+
|
|
204
|
+
Learn more: https://www.npmjs.com/package/@liascript/exporter#project
|
|
205
|
+
|
|
206
|
+
Example:
|
|
207
|
+
- Input: https://github.com/LiaBooks/liabooks.github.com/blob/main/project.yaml
|
|
208
|
+
- Output: https://liabooks.github.io
|
|
209
|
+
|
|
210
|
+
--project-no-meta Disable the generation of meta information
|
|
211
|
+
for OpenGraph and Twitter-cards.
|
|
212
|
+
--project-no-rdf Disable the generation of json-ld.
|
|
213
|
+
--project-no-categories Disable the filter for categories/tags.
|
|
214
|
+
--project-category-blur Enable this and the categories will be blurred
|
|
215
|
+
instead of deleted.
|
|
216
|
+
--project-generate-scrom12 SCORM12 and pass additional scrom settings.
|
|
217
|
+
--project-generate-scrom2004SCORM2004 and pass additional scrom settings.
|
|
218
|
+
--project-generate-ims IMS resources with additional config settings.
|
|
219
|
+
--project-generate-pdf PDFs are automatically generated and added to
|
|
220
|
+
every card.
|
|
221
|
+
--project-generate-cache Only generate new files, if they do not exist.
|
|
222
|
+
|
|
223
|
+
RDF settings:
|
|
224
|
+
|
|
225
|
+
RDF (Resource Description Framework) export generates structured metadata for
|
|
226
|
+
your LiaScript course or your project-yaml in standard linked data formats. This
|
|
227
|
+
helps with course discovery and enables semantic web applications to understand
|
|
228
|
+
your content. Available output formats are n-quads and JSON-LD.
|
|
229
|
+
|
|
230
|
+
Learn more:
|
|
231
|
+
- RDF: https://www.w3.org/RDF/
|
|
232
|
+
- N-Quads: https://www.w3.org/TR/n-quads/
|
|
233
|
+
- JSON-LD: https://json-ld.org/
|
|
234
|
+
|
|
235
|
+
--rdf-format Output format n-quads, json-ld
|
|
236
|
+
(defaults to json-ld).
|
|
237
|
+
--rdf-preview Output the result to the console.
|
|
238
|
+
--rdf-url Refer to an external URL when
|
|
239
|
+
parsing a local project.
|
|
240
|
+
--rdf-type Course frm schmema.org is applied as
|
|
241
|
+
default, overwrite this with EducationalResource,
|
|
242
|
+
etc.
|
|
243
|
+
--rdf-license Add a license-URL, otherwise if url was
|
|
244
|
+
provided as input, this will check for an existing
|
|
245
|
+
LICENSE file.
|
|
246
|
+
--rdf-educationalLevel Typically beginner, intermediate or advanced,
|
|
247
|
+
and formal sets of level indicators.
|
|
248
|
+
--rdf-template Use a URL or json-file as a template.
|
|
144
249
|
```
|
|
145
250
|
|
|
146
251
|
### SCORM1.2
|