@liascript/exporter 2.6.8--0.11.1 → 2.6.9--0.11.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/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/export/project.ts +2 -2
- package/src/index.ts +1 -1
package/package.json
CHANGED
package/src/export/project.ts
CHANGED
|
@@ -625,10 +625,10 @@ function card(
|
|
|
625
625
|
|
|
626
626
|
if (tags.length > 0) {
|
|
627
627
|
for (let i = 0; i < tags.length; i++) {
|
|
628
|
-
tag_list += `<span class="badge rounded-pill bg-light text-dark">${tags[i]}</span>`
|
|
628
|
+
tag_list += `<span style="display: inline; white-space: break-spaces;" class="badge rounded-pill bg-light text-dark">${tags[i]}</span>`
|
|
629
629
|
}
|
|
630
630
|
|
|
631
|
-
tag_list = `<
|
|
631
|
+
tag_list = `<p>${tag_list}</p>`
|
|
632
632
|
}
|
|
633
633
|
|
|
634
634
|
if (small && comment) {
|
package/src/index.ts
CHANGED
|
@@ -22,7 +22,7 @@ import fetch from 'node-fetch'
|
|
|
22
22
|
|
|
23
23
|
// -------------------------------Main Execution-------------------------------
|
|
24
24
|
if (argv.v || argv.version) {
|
|
25
|
-
console.log('version: 2.6.
|
|
25
|
+
console.log('version: 2.6.9--0.11.1')
|
|
26
26
|
} else if (argv.h || argv.help) {
|
|
27
27
|
help()
|
|
28
28
|
} else if (argv.i || argv.input) {
|