wikiparser-node 1.21.1 → 1.21.3

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.
Files changed (96) hide show
  1. package/README.md +12 -6
  2. package/bundle/bundle-es8.min.js +25 -25
  3. package/bundle/bundle-lsp.min.js +26 -26
  4. package/bundle/bundle.min.js +25 -25
  5. package/coverage/badge.svg +1 -1
  6. package/dist/addon/table.js +5 -5
  7. package/dist/addon/token.js +116 -7
  8. package/dist/base.d.mts +6 -1
  9. package/dist/base.d.ts +6 -1
  10. package/dist/bin/config.js +3 -3
  11. package/dist/index.d.ts +9 -2
  12. package/dist/index.js +10 -1
  13. package/dist/lib/element.d.ts +1 -0
  14. package/dist/lib/element.js +3 -1
  15. package/dist/lib/lintConfig.d.ts +13 -0
  16. package/dist/lib/lintConfig.js +161 -0
  17. package/dist/lib/lsp.d.ts +2 -0
  18. package/dist/lib/lsp.js +11 -8
  19. package/dist/lib/node.d.ts +20 -3
  20. package/dist/lib/node.js +647 -585
  21. package/dist/lib/text.d.ts +2 -0
  22. package/dist/lib/text.js +21 -12
  23. package/dist/lib/title.d.ts +3 -1
  24. package/dist/lib/title.js +3 -1
  25. package/dist/mixin/attributesParent.d.ts +6 -6
  26. package/dist/mixin/attributesParent.js +4 -4
  27. package/dist/mixin/cached.d.ts +5 -0
  28. package/dist/mixin/cached.js +22 -0
  29. package/dist/mixin/clone.d.ts +5 -0
  30. package/dist/mixin/clone.js +23 -0
  31. package/dist/mixin/hidden.js +68 -18
  32. package/dist/mixin/sol.js +2 -2
  33. package/dist/parser/commentAndExt.js +1 -1
  34. package/dist/parser/html.js +3 -3
  35. package/dist/parser/list.js +6 -3
  36. package/dist/parser/table.js +4 -4
  37. package/dist/src/arg.js +14 -8
  38. package/dist/src/atom.js +76 -31
  39. package/dist/src/attribute.d.ts +1 -0
  40. package/dist/src/attribute.js +51 -20
  41. package/dist/src/attributes.d.ts +7 -7
  42. package/dist/src/attributes.js +415 -366
  43. package/dist/src/commented.js +81 -35
  44. package/dist/src/converter.js +14 -8
  45. package/dist/src/converterFlags.js +33 -22
  46. package/dist/src/converterRule.js +263 -216
  47. package/dist/src/extLink.js +23 -18
  48. package/dist/src/gallery.d.ts +12 -2
  49. package/dist/src/gallery.js +30 -10
  50. package/dist/src/heading.d.ts +6 -1
  51. package/dist/src/heading.js +73 -59
  52. package/dist/src/hidden.js +14 -9
  53. package/dist/src/html.js +29 -10
  54. package/dist/src/imageParameter.d.ts +1 -0
  55. package/dist/src/imageParameter.js +15 -7
  56. package/dist/src/imagemap.js +35 -28
  57. package/dist/src/index.d.ts +3 -0
  58. package/dist/src/index.js +66 -49
  59. package/dist/src/link/base.js +17 -12
  60. package/dist/src/link/file.d.ts +9 -1
  61. package/dist/src/link/file.js +401 -346
  62. package/dist/src/link/galleryImage.js +12 -6
  63. package/dist/src/link/index.js +7 -3
  64. package/dist/src/link/redirectTarget.d.ts +6 -1
  65. package/dist/src/link/redirectTarget.js +14 -5
  66. package/dist/src/magicLink.d.ts +6 -1
  67. package/dist/src/magicLink.js +30 -16
  68. package/dist/src/nested.js +122 -74
  69. package/dist/src/nowiki/base.js +5 -2
  70. package/dist/src/nowiki/comment.js +6 -2
  71. package/dist/src/nowiki/index.js +4 -4
  72. package/dist/src/nowiki/listBase.d.ts +6 -1
  73. package/dist/src/nowiki/listBase.js +7 -2
  74. package/dist/src/nowiki/quote.d.ts +6 -1
  75. package/dist/src/nowiki/quote.js +22 -10
  76. package/dist/src/onlyinclude.js +17 -9
  77. package/dist/src/paramTag/index.js +21 -14
  78. package/dist/src/parameter.js +26 -20
  79. package/dist/src/pre.js +91 -45
  80. package/dist/src/redirect.js +1 -1
  81. package/dist/src/syntax.js +14 -10
  82. package/dist/src/table/index.js +550 -502
  83. package/dist/src/table/td.js +66 -59
  84. package/dist/src/table/trBase.js +179 -129
  85. package/dist/src/tagPair/ext.js +32 -20
  86. package/dist/src/tagPair/include.js +5 -5
  87. package/dist/src/tagPair/translate.js +150 -103
  88. package/dist/src/transclude.d.ts +21 -8
  89. package/dist/src/transclude.js +56 -34
  90. package/dist/util/html.js +45 -43
  91. package/dist/util/lint.js +10 -7
  92. package/dist/util/string.js +13 -7
  93. package/extensions/dist/base.js +2 -2
  94. package/i18n/zh-hans.json +1 -1
  95. package/i18n/zh-hant.json +1 -1
  96. package/package.json +15 -15
package/README.md CHANGED
@@ -44,13 +44,13 @@ npm i wikilint
44
44
  You can download the code via CDN, for example:
45
45
 
46
46
  ```html
47
- <script src="//cdn.jsdelivr.net/npm/wikiparser-node@browser/bundle/bundle.min.js"></script>
47
+ <script src="//cdn.jsdelivr.net/npm/wikiparser-node"></script>
48
48
  ```
49
49
 
50
50
  or
51
51
 
52
52
  ```html
53
- <script src="//unpkg.com/wikiparser-node@browser/bundle/bundle.min.js"></script>
53
+ <script src="//unpkg.com/wikiparser-node/bundle/bundle.min.js"></script>
54
54
  ```
55
55
 
56
56
  For more browser extensions, please refer to the corresponding [documentation](https://github.com/bhsd-harry/wikiparser-node/wiki/Browser-%28EN%29).
@@ -108,12 +108,12 @@ A full database dump (`*.xml.bz2`) scan of Chinese Wikipedia's ~3.5 million arti
108
108
  ### HTML tag
109
109
 
110
110
  1. Style sanitization is sometimes different ([Example](http://bhsd-harry.github.io/wikiparser-node/tests.html#CSS%20safety%20test%20(all%20browsers)%3A%20vertical%20tab%20(T57332%20%2F%20CVE-2013-4567))).
111
- 1. Empty `id` attributes are not removed ([Example](http://bhsd-harry.github.io/wikiparser-node/tests.html#Sanitizer%3A%20Validating%20the%20contents%20of%20the%20id%20attribute%2C%20empty%20attribute%20syntax%20(T6515))).
112
111
 
113
112
  ### Table
114
113
 
115
- 1. When the entire table content is fostered, the table does not have an empty `<td>` ([Example](http://bhsd-harry.github.io/wikiparser-node/tests.html#Templates%3A%20Wiki%20Tables%3A%204.%20Templated%20tags%2C%20no%20content)).
116
- 1. Missing newline between the fostered content and the table ([Example](http://bhsd-harry.github.io/wikiparser-node/tests.html#Templates%3A%20Wiki%20Tables%3A%201a.%20Fostering%20of%20entire%20template%20content)).
114
+ 1. `<caption>` elements are wrapped in `<tbody>` elements ([Example](http://bhsd-harry.github.io/wikiparser-node/tests.html#Trim%20whitespace%20in%20wikitext%20headings%2C%20list%20items%2C%20table%20captions%2C%20headings%2C%20and%20cells)).
115
+ 1. Unclosed HTML tags in the table fostered content ([Example](http://bhsd-harry.github.io/wikiparser-node/tests.html#Fuzz%20testing%3A%20Parser24)).
116
+ 1. `<tr>` elements should not be fostered ([Example](http://bhsd-harry.github.io/wikiparser-node/tests.html#Empty%20TR%20followed%20by%20a%20template-generated%20TR)).
117
117
 
118
118
  ### Link
119
119
 
@@ -123,8 +123,14 @@ A full database dump (`*.xml.bz2`) scan of Chinese Wikipedia's ~3.5 million arti
123
123
 
124
124
  ### External link
125
125
 
126
+ 1. External images are not supported (Examples [1](http://bhsd-harry.github.io/wikiparser-node/tests.html#External%20image), [2](http://bhsd-harry.github.io/wikiparser-node/tests.html#External%20links%3A%20Clickable%20images)).
126
127
  1. No percent-encoding in displayed free external links ([Example](http://bhsd-harry.github.io/wikiparser-node/tests.html#Parsoid%3A%20pipe%20in%20transclusion%20parameter)).
127
128
 
128
129
  ### Block element
129
130
 
130
- 1. Incomplete `<p>` wrapping when there are block elements (e.g., [`<pre>`](http://bhsd-harry.github.io/wikiparser-node/tests.html#%3Cpre%3E%20inside%20a%20link), [`<div>`](http://bhsd-harry.github.io/wikiparser-node/tests.html#Templates%3A%20Scopes%20should%20not%20be%20expanded%20unnecessarily) or even [closing tags](http://bhsd-harry.github.io/wikiparser-node/tests.html#Non-word%20characters%20don't%20terminate%20tag%20names%20(T19663%2C%20T42670%2C%20T54022))).
131
+ 1. Incomplete `<p>` wrapping when there are block elements (e.g., [`<pre>`](http://bhsd-harry.github.io/wikiparser-node/tests.html#%3Cpre%3E%20inside%20a%20link), [`<div>`](http://bhsd-harry.github.io/wikiparser-node/tests.html#Templates%3A%20Scopes%20should%20not%20be%20expanded%20unnecessarily) or even [closing tags](http://bhsd-harry.github.io/wikiparser-node/tests.html#Non-word%20characters%20don't%20terminate%20tag%20names%20(T19663%2C%20T42670%2C%20T54022))).
132
+ 1. Mixed lists ([Example](http://bhsd-harry.github.io/wikiparser-node/tests.html#Mixed%20Lists%3A%20Test%204)).
133
+
134
+ ### Miscellaneous
135
+
136
+ 1. Illegal HTML entities ([Example](http://bhsd-harry.github.io/wikiparser-node/tests.html#Illegal%20character%20references%20(T106578%2C%20T113194))).