index.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3. </html>
  4. <head>
  5. <title>CKEditor</title>
  6. <meta charset="UTF-8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="icon" type="image/png" href="https://c.cksource.com/a/1/logos/ckeditor5.png">
  9. </head>
  10. <body data-editor="ClassicEditor" data-collaboration="false">
  11. <main>
  12. <div class="editor">
  13. <h2>Bilingual Personality Disorder</h2>
  14. <figure class="image image-style-side"><img src="https://c.cksource.com/a/1/img/docs/sample-image-bilingual-personality-disorder.jpg">
  15. <figcaption>One language, one person.</figcaption>
  16. </figure>
  17. <p>
  18. This may be the first time you hear about this made-up disorder but
  19. it actually isn’t so far from the truth. Even the studies that were conducted almost half a century show that
  20. <strong>the language you speak has more effects on you than you realise</strong>.
  21. </p>
  22. <p>
  23. One of the very first experiments conducted on this topic dates back to 1964.
  24. <a href="https://www.researchgate.net/publication/9440038_Language_and_TAT_content_in_bilinguals">In the experiment</a>
  25. designed by linguist Ervin-Tripp who is an authority expert in psycholinguistic and sociolinguistic studies,
  26. adults who are bilingual in English in French were showed series of pictures and were asked to create 3-minute stories.
  27. In the end participants emphasized drastically different dynamics for stories in English and French.
  28. </p>
  29. <p>
  30. Another ground-breaking experiment which included bilingual Japanese women married to American men in San Francisco were
  31. asked to complete sentences. The goal of the experiment was to investigate whether or not human feelings and thoughts
  32. are expressed differently in <strong>different language mindsets</strong>.
  33. <Here>is a sample from the the experiment:</Here>
  34. </p>
  35. <table>
  36. <thead>
  37. <tr>
  38. <th></th>
  39. <th>English</th>
  40. <th>Japanese</th>
  41. </tr>
  42. </thead>
  43. <tbody>
  44. <tr>
  45. <td>Real friends should</td>
  46. <td>Be very frank</td>
  47. <td>Help each other</td>
  48. </tr>
  49. <tr>
  50. <td>I will probably become</td>
  51. <td>A teacher</td>
  52. <td>A housewife</td>
  53. </tr>
  54. <tr>
  55. <td>When there is a conflict with family</td>
  56. <td>I do what I want</td>
  57. <td>It's a time of great unhappiness</td>
  58. </tr>
  59. </tbody>
  60. </table>
  61. <p>
  62. More recent <a href="https://books.google.pl/books?id=1LMhWGHGkRUC">studies</a> show, the language a person speaks affects
  63. their cognition, behaviour, emotions and hence <strong>their personality</strong>.
  64. This shouldn’t come as a surprise
  65. <a href="https://en.wikipedia.org/wiki/Lateralization_of_brain_function">since we already know</a> that different regions
  66. of the brain become more active depending on the person’s activity at hand. Since structure, information and especially
  67. <strong>the culture</strong> of languages varies substantially and the language a person speaks is an essential element of daily life.
  68. </p>
  69. </div>
  70. </main>
  71. <script src="../build/ckeditor.js"></script>
  72. <script>CustomEditors.InlineEditor
  73. .create(document.querySelector('.editor'), {
  74. language: 'ru-ru',
  75. licenseKey: '',
  76. })
  77. .then(editor => {
  78. window.editor = editor;
  79. })
  80. .catch(error => {
  81. console.error('Oops, something went wrong!');
  82. console.error('Please, report the following error on https://github.com/ckeditor/ckeditor5/issues with the build id and the error stack trace:');
  83. console.warn('Build id: 5b7au417cddo-6dppnd86o5ep');
  84. console.error(error);
  85. });
  86. </script>
  87. </body>