@liascript/exporter 2.5.3--0.10.22 → 2.5.4--0.10.22
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 +12 -0
- package/assets/ims/6a0ec3b1.zip +0 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/src/export/helper.ts +26 -1
- package/src/export/pdf.ts +3 -6
- package/src/export/project.ts +130 -8
- package/src/export/scorm12.ts +2 -4
- package/src/index.ts +19 -3
package/README.md
CHANGED
|
@@ -645,7 +645,14 @@ collection:
|
|
|
645
645
|
- url: https://raw.githubusercontent.com/TUBAF-IfI-LiaScript/VL_Softwareentwicklung/master/24_Tasks.md
|
|
646
646
|
- url: https://raw.githubusercontent.com/TUBAF-IfI-LiaScript/VL_Softwareentwicklung/master/25_LINQ.md
|
|
647
647
|
- url: https://raw.githubusercontent.com/TUBAF-IfI-LiaScript/VL_Softwareentwicklung/master/26_DesignPattern.md
|
|
648
|
+
arguments:
|
|
649
|
+
- pdf-format: A3
|
|
650
|
+
- project-generate-scorm2004: true
|
|
651
|
+
- scorm-organization: TU-Bergakademie Freiberg
|
|
652
|
+
|
|
648
653
|
- url: https://raw.githubusercontent.com/TUBAF-IfI-LiaScript/VL_Softwareentwicklung/master/27_Anwendungen.md
|
|
654
|
+
arguments:
|
|
655
|
+
- project-generate-pdf: false
|
|
649
656
|
```
|
|
650
657
|
|
|
651
658
|
Basic usage:
|
|
@@ -662,6 +669,11 @@ Additionally, you can pass any pdf settings to customize the pdf output.
|
|
|
662
669
|
liaex -i curriculum.yml --format project --project-generate-pdf --pdf-format A4
|
|
663
670
|
```
|
|
664
671
|
|
|
672
|
+
As it is depicted in the last part of the yaml file above, you can manually set or change all parameters.
|
|
673
|
+
Such as, for which projects you want to generate a pdf and pass also all additional parameters.
|
|
674
|
+
Simply pass all arguments as `arguments` with the long name and without the starting dashes.
|
|
675
|
+
This way you can generate a very detailed project configuration and overview.
|
|
676
|
+
|
|
665
677
|
## TODOs & Contributions
|
|
666
678
|
|
|
667
679
|
* Further exporter
|
|
Binary file
|