@digicole/pdfmake-rtl 2.1.0 → 2.1.1
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 +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,6 +41,10 @@ PDF document generation library for server-side and client-side in pure JavaScri
|
|
|
41
41
|
|
|
42
42
|
Check out [the playground](http://aysnet1.github.io/pdfmake-rtl/playground.html) and [examples](https://github.com/aysnet1/pdfmake-rtl/tree/master/examples).
|
|
43
43
|
|
|
44
|
+
## documentation
|
|
45
|
+
|
|
46
|
+
For comprehensive guides, API references, and usage examples, visit the official documentation at [pdfmake.github.io/docs](https://pdfmake.github.io/docs/).
|
|
47
|
+
|
|
44
48
|
### Features
|
|
45
49
|
|
|
46
50
|
#### 🔤 RTL Language Support
|
|
@@ -99,8 +103,8 @@ npm install pdfmake-rtl
|
|
|
99
103
|
```html
|
|
100
104
|
<!-- Load pdfmake-rtl + fonts -->
|
|
101
105
|
<script src="https://unpkg.com/pdfmake-rtl/build/pdfmake.min.js"></script>
|
|
102
|
-
|
|
103
|
-
<script src="https://unpkg.com/pdfmake-rtl/build/fonts/Cairo.js"></script> -->
|
|
106
|
+
<script src="https://unpkg.com/pdfmake-rtl/build/vfs_fonts.js"></script>
|
|
107
|
+
<!-- <script src="https://unpkg.com/pdfmake-rtl/build/fonts/Cairo.js"></script> -->
|
|
104
108
|
|
|
105
109
|
<script>
|
|
106
110
|
var dd = {
|
package/package.json
CHANGED