@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liascript/exporter",
3
- "version": "2.6.8--0.11.1",
3
+ "version": "2.6.9--0.11.1",
4
4
  "description": "A generic exporter for LiaScript",
5
5
  "main": "dist/index.js",
6
6
  "repository": {
@@ -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 = `<div class="d-flex align-items-center">${tag_list}</div>`
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.8--0.11.1')
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) {