@ckeditor/ckeditor5-html-support 46.0.0-alpha.0 → 46.0.0-alpha.2
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 +45 -42
- package/dist/index.js.map +1 -1
- package/package.json +12 -12
- package/src/schemadefinitions.d.ts +45 -0
- package/src/schemadefinitions.js +45 -41
package/dist/index.js
CHANGED
|
@@ -369,48 +369,51 @@ function modifyGhsAttribute(writer, item, ghsAttributeName, subject, callback) {
|
|
|
369
369
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
370
370
|
*/ /**
|
|
371
371
|
* @module html-support/schemadefinitions
|
|
372
|
-
*/
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
372
|
+
*/ /**
|
|
373
|
+
* Skipped elements due to HTML deprecation:
|
|
374
|
+
* * noframes (not sure if we should provide support for this element. CKE4 is not supporting frameset and frame,
|
|
375
|
+
* but it will unpack <frameset><noframes>foobar</noframes></frameset> to <noframes>foobar</noframes>, so there
|
|
376
|
+
* may be some content loss. Although using noframes as a standalone element seems invalid)
|
|
377
|
+
* * keygen (this one is also empty)
|
|
378
|
+
* * applet (support is limited mostly to old IE)
|
|
379
|
+
* * basefont (this one is also empty)
|
|
380
|
+
* * isindex (basically no support for modern browsers at all)
|
|
381
|
+
*
|
|
382
|
+
* Skipped elements due to lack empty element support:
|
|
383
|
+
* * hr
|
|
384
|
+
* * area
|
|
385
|
+
* * br
|
|
386
|
+
* * command
|
|
387
|
+
* * map
|
|
388
|
+
* * wbr
|
|
389
|
+
* * colgroup -> col
|
|
390
|
+
*
|
|
391
|
+
* Skipped elements due to complexity:
|
|
392
|
+
* * datalist with option elements used as a data source for input[list] element
|
|
393
|
+
*
|
|
394
|
+
* Skipped elements as they are handled as an object content:
|
|
395
|
+
* * track
|
|
396
|
+
* * source
|
|
397
|
+
* * option
|
|
398
|
+
* * param
|
|
399
|
+
* * optgroup
|
|
400
|
+
*
|
|
401
|
+
* Skipped full page HTML elements:
|
|
402
|
+
* * body
|
|
403
|
+
* * html
|
|
404
|
+
* * title
|
|
405
|
+
* * head
|
|
406
|
+
* * meta
|
|
407
|
+
* * link
|
|
408
|
+
* * etc...
|
|
409
|
+
*
|
|
410
|
+
* Skipped hidden elements:
|
|
411
|
+
* noscript
|
|
412
|
+
*
|
|
413
|
+
* When adding elements to this list, update the feature guide listing, too.
|
|
414
|
+
*
|
|
415
|
+
* @internal
|
|
416
|
+
*/ const defaultConfig = {
|
|
414
417
|
block: [
|
|
415
418
|
// Existing features.
|
|
416
419
|
{
|