Browse Source

Internal: Updated the license header. See ckeditor/ckeditor5#1557. [skip ci]

Kamil Piechaczek 6 năm trước cách đây
mục cha
commit
8fd892f3fc
49 tập tin đã thay đổi với 49 bổ sung49 xóa
  1. 1 1
      packages/ckeditor5-basic-styles/.eslintrc.js
  2. 1 1
      packages/ckeditor5-basic-styles/docs/_snippets/features/basic-styles.js
  3. 1 1
      packages/ckeditor5-basic-styles/docs/_snippets/features/build-basic-styles-source.js
  4. 1 1
      packages/ckeditor5-basic-styles/src/attributecommand.js
  5. 1 1
      packages/ckeditor5-basic-styles/src/bold.js
  6. 1 1
      packages/ckeditor5-basic-styles/src/bold/boldediting.js
  7. 1 1
      packages/ckeditor5-basic-styles/src/bold/boldui.js
  8. 1 1
      packages/ckeditor5-basic-styles/src/code.js
  9. 1 1
      packages/ckeditor5-basic-styles/src/code/codeediting.js
  10. 1 1
      packages/ckeditor5-basic-styles/src/code/codeui.js
  11. 1 1
      packages/ckeditor5-basic-styles/src/italic.js
  12. 1 1
      packages/ckeditor5-basic-styles/src/italic/italicediting.js
  13. 1 1
      packages/ckeditor5-basic-styles/src/italic/italicui.js
  14. 1 1
      packages/ckeditor5-basic-styles/src/strikethrough.js
  15. 1 1
      packages/ckeditor5-basic-styles/src/strikethrough/strikethroughediting.js
  16. 1 1
      packages/ckeditor5-basic-styles/src/strikethrough/strikethroughui.js
  17. 1 1
      packages/ckeditor5-basic-styles/src/subscript.js
  18. 1 1
      packages/ckeditor5-basic-styles/src/subscript/subscriptediting.js
  19. 1 1
      packages/ckeditor5-basic-styles/src/subscript/subscriptui.js
  20. 1 1
      packages/ckeditor5-basic-styles/src/superscript.js
  21. 1 1
      packages/ckeditor5-basic-styles/src/superscript/superscriptediting.js
  22. 1 1
      packages/ckeditor5-basic-styles/src/superscript/superscriptui.js
  23. 1 1
      packages/ckeditor5-basic-styles/src/underline.js
  24. 1 1
      packages/ckeditor5-basic-styles/src/underline/underlineediting.js
  25. 1 1
      packages/ckeditor5-basic-styles/src/underline/underlineui.js
  26. 1 1
      packages/ckeditor5-basic-styles/tests/attributecommand.js
  27. 1 1
      packages/ckeditor5-basic-styles/tests/bold.js
  28. 1 1
      packages/ckeditor5-basic-styles/tests/bold/boldediting.js
  29. 1 1
      packages/ckeditor5-basic-styles/tests/bold/boldui.js
  30. 1 1
      packages/ckeditor5-basic-styles/tests/code.js
  31. 1 1
      packages/ckeditor5-basic-styles/tests/code/codeediting.js
  32. 1 1
      packages/ckeditor5-basic-styles/tests/code/codeui.js
  33. 1 1
      packages/ckeditor5-basic-styles/tests/italic.js
  34. 1 1
      packages/ckeditor5-basic-styles/tests/italic/italicediting.js
  35. 1 1
      packages/ckeditor5-basic-styles/tests/italic/italicui.js
  36. 1 1
      packages/ckeditor5-basic-styles/tests/manual/basic-styles.js
  37. 1 1
      packages/ckeditor5-basic-styles/tests/strikethrough.js
  38. 1 1
      packages/ckeditor5-basic-styles/tests/strikethrough/strikethroughediting.js
  39. 1 1
      packages/ckeditor5-basic-styles/tests/strikethrough/strikethroughui.js
  40. 1 1
      packages/ckeditor5-basic-styles/tests/subscript.js
  41. 1 1
      packages/ckeditor5-basic-styles/tests/subscript/subscriptediting.js
  42. 1 1
      packages/ckeditor5-basic-styles/tests/subscript/subscriptui.js
  43. 1 1
      packages/ckeditor5-basic-styles/tests/superscript.js
  44. 1 1
      packages/ckeditor5-basic-styles/tests/superscript/superscriptediting.js
  45. 1 1
      packages/ckeditor5-basic-styles/tests/superscript/superscriptui.js
  46. 1 1
      packages/ckeditor5-basic-styles/tests/underline.js
  47. 1 1
      packages/ckeditor5-basic-styles/tests/underline/underlineediting.js
  48. 1 1
      packages/ckeditor5-basic-styles/tests/underline/underlineui.js
  49. 1 1
      packages/ckeditor5-basic-styles/theme/code.css

+ 1 - 1
packages/ckeditor5-basic-styles/.eslintrc.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /* eslint-env node */

+ 1 - 1
packages/ckeditor5-basic-styles/docs/_snippets/features/basic-styles.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /* globals ClassicEditor, console, window, document */

+ 1 - 1
packages/ckeditor5-basic-styles/docs/_snippets/features/build-basic-styles-source.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /* globals window */

+ 1 - 1
packages/ckeditor5-basic-styles/src/attributecommand.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/bold.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/bold/boldediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/bold/boldui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/code.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/code/codeediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/code/codeui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/italic.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/italic/italicediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/italic/italicui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/strikethrough.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/strikethrough/strikethroughediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/strikethrough/strikethroughui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/subscript.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/subscript/subscriptediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/subscript/subscriptui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/superscript.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/superscript/superscriptediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/superscript/superscriptui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/underline.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/underline/underlineediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/src/underline/underlineui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /**

+ 1 - 1
packages/ckeditor5-basic-styles/tests/attributecommand.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import AttributeCommand from '../src/attributecommand';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/bold.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import Bold from '../src/bold';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/bold/boldediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import BoldEditing from '../../src/bold/boldediting';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/bold/boldui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /* globals document */

+ 1 - 1
packages/ckeditor5-basic-styles/tests/code.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import Code from '../src/code';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/code/codeediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import CodeEditing from '../../src/code/codeediting';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/code/codeui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /* globals document */

+ 1 - 1
packages/ckeditor5-basic-styles/tests/italic.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import Italic from '../src/italic';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/italic/italicediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import ItalicEditing from '../../src/italic/italicediting';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/italic/italicui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /* globals document */

+ 1 - 1
packages/ckeditor5-basic-styles/tests/manual/basic-styles.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /* globals console:false, window, document */

+ 1 - 1
packages/ckeditor5-basic-styles/tests/strikethrough.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import Strikethrough from '../src/strikethrough';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/strikethrough/strikethroughediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import StrikethroughEditing from '../../src/strikethrough/strikethroughediting';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/strikethrough/strikethroughui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /* globals document */

+ 1 - 1
packages/ckeditor5-basic-styles/tests/subscript.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import Subscript from '../src/subscript';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/subscript/subscriptediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import SubEditing from '../../src/subscript/subscriptediting';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/subscript/subscriptui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /* globals document */

+ 1 - 1
packages/ckeditor5-basic-styles/tests/superscript.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import Superscript from '../src/superscript';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/superscript/superscriptediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import SuperEditing from '../../src/superscript/superscriptediting';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/superscript/superscriptui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /* globals document */

+ 1 - 1
packages/ckeditor5-basic-styles/tests/underline.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import Underline from '../src/underline';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/underline/underlineediting.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 import UnderlineEditing from '../../src/underline/underlineediting';

+ 1 - 1
packages/ckeditor5-basic-styles/tests/underline/underlineui.js

@@ -1,6 +1,6 @@
 /**
  * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 /* globals document */

+ 1 - 1
packages/ckeditor5-basic-styles/theme/code.css

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
 .ck-content code {