├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md ├── workflows-config.json └── workflows │ ├── setup-workflows.yml │ ├── stalebot.yml │ └── update-deps.yml ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .mailmap ├── .npm └── README.md ├── .nvmrc ├── CHANGES.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── adapters └── jquery.js ├── bender-runner.config.json ├── bender.ci.js ├── bender.js ├── ckeditor.js ├── config.js ├── contents.css ├── core ├── _bootstrap.js ├── ckeditor.js ├── ckeditor_base.js ├── ckeditor_basic.js ├── ckeditor_license-check.js ├── ckeditor_version-check.js ├── command.js ├── commanddefinition.js ├── config.js ├── creators │ ├── inline.js │ └── themedui.js ├── dataprocessor.js ├── dom.js ├── dom │ ├── comment.js │ ├── document.js │ ├── documentfragment.js │ ├── domobject.js │ ├── element.js │ ├── elementpath.js │ ├── event.js │ ├── iterator.js │ ├── node.js │ ├── nodelist.js │ ├── range.js │ ├── rangelist.js │ ├── rect.js │ ├── text.js │ ├── walker.js │ └── window.js ├── dtd.js ├── editable.js ├── editor.js ├── editor_basic.js ├── env.js ├── event.js ├── eventInfo.js ├── filter.js ├── focusmanager.js ├── htmldataprocessor.js ├── htmlparser.js ├── htmlparser │ ├── basicwriter.js │ ├── cdata.js │ ├── comment.js │ ├── element.js │ ├── filter.js │ ├── filterRulesDefinition.js │ ├── fragment.js │ ├── nameTransformRule.js │ ├── node.js │ └── text.js ├── keystrokehandler.js ├── lang.js ├── loader.js ├── log.js ├── plugindefinition.js ├── plugins.js ├── promise.js ├── resourcemanager.js ├── scriptloader.js ├── selection.js ├── selection │ └── optimization.js ├── skin.js ├── style.js ├── template.js ├── tools.js ├── tools │ └── color.js └── ui.js ├── dev ├── builder │ ├── build-config.js │ └── build.sh ├── console │ ├── console.css │ ├── console.js │ └── focusconsole.js ├── docs │ └── codestyle.md ├── dtd │ └── dtd.html ├── getemoji │ └── getemoji.js ├── iconmaker │ ├── iconmaker.js │ ├── lib │ │ └── main.js │ └── package.json ├── langtool │ ├── _common.sh │ ├── config │ ├── export_po_files.sh │ ├── fix_plugins.sh │ ├── langtool.sh │ ├── meta │ │ ├── ckeditor.core │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-a11yhelp-dialogs │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-about │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-autoembed │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-basicstyles │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-bidi │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-blockquote │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-clipboard │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-codesnippet │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-colorbutton │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-colordialog │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-contextmenu │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-copyformatting │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-devtools │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-div │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-docprops │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-easyimage │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-elementspath │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-embedbase │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-emoji │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-fakeobjects │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-filetools │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-find │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-findandreplace │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-font │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-format │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-forms │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-horizontalrule │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-iframe │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-image │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-image2 │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-imagebase │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-indent │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-language │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-link │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-list │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-liststyle │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-magicline │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-mathjax │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-maximize │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-newpage │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-notification │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-pagebreak │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-pastefromword │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-pastetext │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-placeholder │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-preview │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-print │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-removeformat │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-save │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-scayt │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-selectall │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-showblocks │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-smiley │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-sourcearea │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-sourcedialog │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-specialchar-dialogs │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-specialchar │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-spellcheck │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-stylescombo │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-table │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-templates │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-toolbar │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-uicolor │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-undo │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-uploadwidget │ │ │ └── meta.txt │ │ ├── ckeditor.plugin-widget │ │ │ └── meta.txt │ │ └── ckeditor.plugin-wsc │ │ │ └── meta.txt │ └── update_meta_files.sh ├── license │ └── updatelicense.js ├── pastetools │ └── getclipboard.html ├── samplesvalidator │ └── samplesvalidator.py └── tasks │ ├── ckeditor-base-replace.js │ ├── githooks.js │ ├── jscs.js │ ├── jshint-config.json │ ├── jshint.js │ ├── plugin.js │ ├── samples.js │ └── utils │ └── tools.js ├── gruntfile.js ├── lang ├── _translationstatus.txt ├── af.js ├── ar.js ├── az.js ├── bg.js ├── bn.js ├── bs.js ├── ca.js ├── cs.js ├── cy.js ├── da.js ├── de-ch.js ├── de.js ├── el.js ├── en-au.js ├── en-ca.js ├── en-gb.js ├── en.js ├── eo.js ├── es-mx.js ├── es.js ├── et.js ├── eu.js ├── fa.js ├── fi.js ├── fo.js ├── fr-ca.js ├── fr.js ├── gl.js ├── gu.js ├── he.js ├── hi.js ├── hr.js ├── hu.js ├── id.js ├── is.js ├── it.js ├── ja.js ├── ka.js ├── km.js ├── ko.js ├── ku.js ├── lt.js ├── lv.js ├── mk.js ├── mn.js ├── ms.js ├── nb.js ├── nl.js ├── no.js ├── oc.js ├── pl.js ├── pt-br.js ├── pt.js ├── ro.js ├── ru.js ├── si.js ├── sk.js ├── sl.js ├── sq.js ├── sr-latn.js ├── sr.js ├── sv.js ├── th.js ├── tr.js ├── tt.js ├── ug.js ├── uk.js ├── vi.js ├── zh-cn.js └── zh.js ├── package.json ├── plugins ├── a11yhelp │ ├── dialogs │ │ ├── a11yhelp.js │ │ └── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es-mx.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ └── plugin.js ├── about │ ├── dialogs │ │ ├── about.js │ │ ├── hidpi │ │ │ └── logo_ckeditor.png │ │ └── logo_ckeditor.png │ ├── icons │ │ ├── about.png │ │ └── hidpi │ │ │ └── about.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── adobeair │ └── plugin.js ├── ajax │ └── plugin.js ├── autocomplete │ ├── plugin.js │ └── skins │ │ └── default.css ├── autoembed │ ├── lang │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── autogrow │ ├── plugin.js │ └── samples │ │ └── autogrow.html ├── autolink │ └── plugin.js ├── balloonpanel │ ├── plugin.js │ └── skins │ │ ├── kama │ │ └── balloonpanel.css │ │ ├── moono-lisa │ │ ├── balloonpanel.css │ │ └── images │ │ │ ├── close.png │ │ │ └── hidpi │ │ │ └── close.png │ │ └── moono │ │ ├── balloonpanel.css │ │ └── images │ │ ├── close.png │ │ └── hidpi │ │ └── close.png ├── balloontoolbar │ ├── plugin.js │ └── skins │ │ ├── default.css │ │ ├── kama │ │ └── balloontoolbar.css │ │ ├── moono-lisa │ │ └── balloontoolbar.css │ │ └── moono │ │ └── balloontoolbar.css ├── basicstyles │ ├── icons │ │ ├── bold.png │ │ ├── hidpi │ │ │ ├── bold.png │ │ │ ├── italic.png │ │ │ ├── strike.png │ │ │ ├── subscript.png │ │ │ ├── superscript.png │ │ │ └── underline.png │ │ ├── italic.png │ │ ├── strike.png │ │ ├── subscript.png │ │ ├── superscript.png │ │ └── underline.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── bbcode │ ├── dev │ │ └── bbcode.html │ ├── plugin.js │ └── samples │ │ └── bbcode.html ├── bidi │ ├── icons │ │ ├── bidiltr.png │ │ ├── bidirtl.png │ │ └── hidpi │ │ │ ├── bidiltr.png │ │ │ └── bidirtl.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── blockquote │ ├── icons │ │ ├── blockquote.png │ │ └── hidpi │ │ │ └── blockquote.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── button │ └── plugin.js ├── clipboard │ ├── dev │ │ ├── clipboard.html │ │ ├── console.js │ │ └── dnd.html │ ├── dialogs │ │ └── paste.js │ ├── icons │ │ ├── copy-rtl.png │ │ ├── copy.png │ │ ├── cut-rtl.png │ │ ├── cut.png │ │ ├── hidpi │ │ │ ├── copy-rtl.png │ │ │ ├── copy.png │ │ │ ├── cut-rtl.png │ │ │ ├── cut.png │ │ │ ├── paste-rtl.png │ │ │ └── paste.png │ │ ├── paste-rtl.png │ │ └── paste.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── cloudservices │ └── plugin.js ├── codesnippet │ ├── dialogs │ │ └── codesnippet.js │ ├── icons │ │ ├── codesnippet.png │ │ └── hidpi │ │ │ └── codesnippet.png │ ├── lang │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── lib │ │ └── highlight │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── highlight.pack.js │ │ │ └── styles │ │ │ ├── 1c-light.css │ │ │ ├── a11y-dark.css │ │ │ ├── a11y-light.css │ │ │ ├── agate.css │ │ │ ├── an-old-hope.css │ │ │ ├── androidstudio.css │ │ │ ├── arduino-light.css │ │ │ ├── arta.css │ │ │ ├── ascetic.css │ │ │ ├── atom-one-dark-reasonable.css │ │ │ ├── atom-one-dark.css │ │ │ ├── atom-one-light.css │ │ │ ├── brown-paper.css │ │ │ ├── brown-papersq.png │ │ │ ├── codepen-embed.css │ │ │ ├── color-brewer.css │ │ │ ├── dark.css │ │ │ ├── default.css │ │ │ ├── devibeans.css │ │ │ ├── docco.css │ │ │ ├── far.css │ │ │ ├── felipec.css │ │ │ ├── foundation.css │ │ │ ├── github-dark-dimmed.css │ │ │ ├── github-dark.css │ │ │ ├── github.css │ │ │ ├── gml.css │ │ │ ├── googlecode.css │ │ │ ├── gradient-dark.css │ │ │ ├── gradient-light.css │ │ │ ├── grayscale.css │ │ │ ├── hybrid.css │ │ │ ├── idea.css │ │ │ ├── intellij-light.css │ │ │ ├── ir-black.css │ │ │ ├── isbl-editor-dark.css │ │ │ ├── isbl-editor-light.css │ │ │ ├── kimbie-dark.css │ │ │ ├── kimbie-light.css │ │ │ ├── lightfair.css │ │ │ ├── lioshi.css │ │ │ ├── magula.css │ │ │ ├── mono-blue.css │ │ │ ├── monokai-sublime.css │ │ │ ├── monokai.css │ │ │ ├── night-owl.css │ │ │ ├── nnfx-dark.css │ │ │ ├── nnfx-light.css │ │ │ ├── nord.css │ │ │ ├── obsidian.css │ │ │ ├── panda-syntax-dark.css │ │ │ ├── panda-syntax-light.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── pojoaque.css │ │ │ ├── pojoaque.jpg │ │ │ ├── purebasic.css │ │ │ ├── qtcreator-dark.css │ │ │ ├── qtcreator-light.css │ │ │ ├── rainbow.css │ │ │ ├── routeros.css │ │ │ ├── school-book.css │ │ │ ├── shades-of-purple.css │ │ │ ├── srcery.css │ │ │ ├── stackoverflow-dark.css │ │ │ ├── stackoverflow-light.css │ │ │ ├── sunburst.css │ │ │ ├── tokyo-night-dark.css │ │ │ ├── tokyo-night-light.css │ │ │ ├── tomorrow-night-blue.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── vs.css │ │ │ ├── vs2015.css │ │ │ ├── xcode.css │ │ │ └── xt256.css │ ├── plugin.js │ └── samples │ │ └── codesnippet.html ├── codesnippetgeshi │ ├── README.md │ └── plugin.js ├── colorbutton │ ├── icons │ │ ├── bgcolor.png │ │ ├── hidpi │ │ │ ├── bgcolor.png │ │ │ └── textcolor.png │ │ └── textcolor.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── colordialog │ ├── dialogs │ │ ├── colordialog.css │ │ └── colordialog.js │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── contextmenu │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── copyformatting │ ├── cursors │ │ ├── cursor-disabled.svg │ │ └── cursor.svg │ ├── icons │ │ ├── copyformatting.png │ │ └── hidpi │ │ │ └── copyformatting.png │ ├── lang │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ └── styles │ │ └── copyformatting.css ├── devtools │ ├── lang │ │ ├── _translationstatus.txt │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ └── samples │ │ └── devtools.html ├── dialog │ ├── dialogDefinition.js │ ├── plugin.js │ ├── samples │ │ ├── assets │ │ │ └── my_dialog.js │ │ └── dialog.html │ └── styles │ │ └── dialog.css ├── dialogadvtab │ └── plugin.js ├── dialogui │ └── plugin.js ├── div │ ├── dialogs │ │ └── div.js │ ├── icons │ │ ├── creatediv.png │ │ └── hidpi │ │ │ └── creatediv.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── divarea │ ├── plugin.js │ └── samples │ │ └── divarea.html ├── docprops │ ├── dialogs │ │ └── docprops.js │ ├── icons │ │ ├── docprops-rtl.png │ │ ├── docprops.png │ │ └── hidpi │ │ │ ├── docprops-rtl.png │ │ │ └── docprops.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ └── samples │ │ └── docprops.html ├── easyimage │ ├── dialogs │ │ └── easyimagealt.js │ ├── icons │ │ ├── easyimagealigncenter.png │ │ ├── easyimagealignleft.png │ │ ├── easyimagealignright.png │ │ ├── easyimagealt.png │ │ ├── easyimagefull.png │ │ ├── easyimageside.png │ │ ├── easyimageupload.png │ │ └── hidpi │ │ │ ├── easyimagealigncenter.png │ │ │ ├── easyimagealignleft.png │ │ │ ├── easyimagealignright.png │ │ │ ├── easyimagealt.png │ │ │ ├── easyimagefull.png │ │ │ ├── easyimageside.png │ │ │ └── easyimageupload.png │ ├── lang │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en.js │ │ ├── et.js │ │ ├── fa.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── ku.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── uk.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ ├── samples │ │ └── easyimage.html │ └── styles │ │ └── easyimage.css ├── editorplaceholder │ └── plugin.js ├── elementspath │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── embed │ ├── icons │ │ ├── embed.png │ │ └── hidpi │ │ │ └── embed.png │ └── plugin.js ├── embedbase │ ├── dialogs │ │ └── embedbase.js │ ├── lang │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── embedsemantic │ ├── icons │ │ ├── embedsemantic.png │ │ └── hidpi │ │ │ └── embedsemantic.png │ └── plugin.js ├── emoji │ ├── assets │ │ ├── iconsall.png │ │ └── iconsall.svg │ ├── emoji.json │ ├── icons │ │ ├── emojipanel.png │ │ └── hidpi │ │ │ └── emojipanel.png │ ├── lang │ │ ├── cs.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en.js │ │ ├── et.js │ │ ├── fa.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── sk.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ ├── samples │ │ └── emoji.html │ └── skins │ │ └── default.css ├── enterkey │ ├── plugin.js │ └── samples │ │ └── enterkey.html ├── entities │ └── plugin.js ├── fakeobjects │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── filebrowser │ └── plugin.js ├── filetools │ ├── dev │ │ └── uploaddebugger.js │ ├── lang │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── find │ ├── dialogs │ │ └── find.js │ ├── icons │ │ ├── find-rtl.png │ │ ├── find.png │ │ ├── hidpi │ │ │ ├── find-rtl.png │ │ │ ├── find.png │ │ │ └── replace.png │ │ └── replace.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── flash │ └── plugin.js ├── floatingspace │ └── plugin.js ├── floatpanel │ └── plugin.js ├── font │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── format │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── forms │ ├── dialogs │ │ ├── button.js │ │ ├── checkbox.js │ │ ├── form.js │ │ ├── hiddenfield.js │ │ ├── radio.js │ │ ├── select.js │ │ ├── textarea.js │ │ └── textfield.js │ ├── icons │ │ ├── button.png │ │ ├── checkbox.png │ │ ├── form.png │ │ ├── hiddenfield.png │ │ ├── hidpi │ │ │ ├── button.png │ │ │ ├── checkbox.png │ │ │ ├── form.png │ │ │ ├── hiddenfield.png │ │ │ ├── imagebutton.png │ │ │ ├── radio.png │ │ │ ├── select-rtl.png │ │ │ ├── select.png │ │ │ ├── textarea-rtl.png │ │ │ ├── textarea.png │ │ │ ├── textfield-rtl.png │ │ │ └── textfield.png │ │ ├── imagebutton.png │ │ ├── radio.png │ │ ├── select-rtl.png │ │ ├── select.png │ │ ├── textarea-rtl.png │ │ ├── textarea.png │ │ ├── textfield-rtl.png │ │ └── textfield.png │ ├── images │ │ └── hiddenfield.gif │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── horizontalrule │ ├── icons │ │ ├── hidpi │ │ │ └── horizontalrule.png │ │ └── horizontalrule.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── htmlwriter │ ├── plugin.js │ └── samples │ │ └── outputhtml.html ├── iframe │ ├── dialogs │ │ └── iframe.js │ ├── icons │ │ ├── hidpi │ │ │ └── iframe.png │ │ └── iframe.png │ ├── images │ │ └── placeholder.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── iframedialog │ └── plugin.js ├── image │ ├── dialogs │ │ └── image.js │ ├── icons │ │ ├── hidpi │ │ │ └── image.png │ │ └── image.png │ ├── images │ │ └── noimage.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── image2 │ ├── dev │ │ ├── assets │ │ │ ├── image1.jpg │ │ │ └── image2.jpg │ │ ├── contents.css │ │ └── image2.html │ ├── dialogs │ │ └── image2.js │ ├── icons │ │ ├── hidpi │ │ │ └── image.png │ │ └── image.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ └── samples │ │ ├── assets │ │ ├── image1.jpg │ │ └── image2.jpg │ │ └── image2.html ├── imagebase │ ├── lang │ │ ├── az.js │ │ ├── bg.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en.js │ │ ├── et.js │ │ ├── fa.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ └── styles │ │ └── imagebase.css ├── indent │ ├── dev │ │ └── indent.html │ ├── icons │ │ ├── hidpi │ │ │ ├── indent-rtl.png │ │ │ ├── indent.png │ │ │ ├── outdent-rtl.png │ │ │ └── outdent.png │ │ ├── indent-rtl.png │ │ ├── indent.png │ │ ├── outdent-rtl.png │ │ └── outdent.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── indentblock │ └── plugin.js ├── indentlist │ └── plugin.js ├── justify │ ├── icons │ │ ├── hidpi │ │ │ ├── justifyblock.png │ │ │ ├── justifycenter.png │ │ │ ├── justifyleft.png │ │ │ └── justifyright.png │ │ ├── justifyblock.png │ │ ├── justifycenter.png │ │ ├── justifyleft.png │ │ └── justifyright.png │ └── plugin.js ├── language │ ├── icons │ │ ├── hidpi │ │ │ └── language.png │ │ └── language.png │ ├── lang │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── lineutils │ ├── dev │ │ ├── dnd.html │ │ └── magicfinger.html │ └── plugin.js ├── link │ ├── dialogs │ │ ├── anchor.js │ │ └── link.js │ ├── icons │ │ ├── anchor-rtl.png │ │ ├── anchor.png │ │ ├── hidpi │ │ │ ├── anchor-rtl.png │ │ │ ├── anchor.png │ │ │ ├── link.png │ │ │ └── unlink.png │ │ ├── link.png │ │ └── unlink.png │ ├── images │ │ ├── anchor.png │ │ └── hidpi │ │ │ └── anchor.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── list │ ├── icons │ │ ├── bulletedlist-rtl.png │ │ ├── bulletedlist.png │ │ ├── hidpi │ │ │ ├── bulletedlist-rtl.png │ │ │ ├── bulletedlist.png │ │ │ ├── numberedlist-rtl.png │ │ │ └── numberedlist.png │ │ ├── numberedlist-rtl.png │ │ └── numberedlist.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── listblock │ └── plugin.js ├── liststyle │ ├── dialogs │ │ └── liststyle.js │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── magicline │ ├── dev │ │ └── magicline.html │ ├── images │ │ ├── hidpi │ │ │ ├── icon-rtl.png │ │ │ └── icon.png │ │ ├── icon-rtl.png │ │ └── icon.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ └── samples │ │ └── magicline.html ├── mathjax │ ├── dev │ │ └── mathjax.html │ ├── dialogs │ │ └── mathjax.js │ ├── icons │ │ ├── hidpi │ │ │ └── mathjax.png │ │ └── mathjax.png │ ├── images │ │ └── loader.gif │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ └── samples │ │ └── mathjax.html ├── maximize │ ├── icons │ │ ├── hidpi │ │ │ └── maximize.png │ │ └── maximize.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── mentions │ ├── plugin.js │ └── samples │ │ └── mentions.html ├── menu │ └── plugin.js ├── menubutton │ └── plugin.js ├── newpage │ ├── icons │ │ ├── hidpi │ │ │ ├── newpage-rtl.png │ │ │ └── newpage.png │ │ ├── newpage-rtl.png │ │ └── newpage.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── notification │ ├── lang │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── notificationaggregator │ └── plugin.js ├── pagebreak │ ├── icons │ │ ├── hidpi │ │ │ ├── pagebreak-rtl.png │ │ │ └── pagebreak.png │ │ ├── pagebreak-rtl.png │ │ └── pagebreak.png │ ├── images │ │ └── pagebreak.gif │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── panel │ └── plugin.js ├── panelbutton │ └── plugin.js ├── pastefromgdocs │ ├── filter │ │ └── default.js │ └── plugin.js ├── pastefromlibreoffice │ ├── filter │ │ └── default.js │ └── plugin.js ├── pastefromword │ ├── filter │ │ └── default.js │ ├── icons │ │ ├── hidpi │ │ │ ├── pastefromword-rtl.png │ │ │ └── pastefromword.png │ │ ├── pastefromword-rtl.png │ │ └── pastefromword.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── pastetext │ ├── icons │ │ ├── hidpi │ │ │ ├── pastetext-rtl.png │ │ │ └── pastetext.png │ │ ├── pastetext-rtl.png │ │ └── pastetext.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── pastetools │ ├── filter │ │ ├── common.js │ │ └── image.js │ └── plugin.js ├── placeholder │ ├── dev │ │ └── placeholder.html │ ├── dialogs │ │ └── placeholder.js │ ├── icons │ │ ├── hidpi │ │ │ └── placeholder.png │ │ └── placeholder.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ └── samples │ │ └── placeholder.html ├── popup │ └── plugin.js ├── preview │ ├── icons │ │ ├── hidpi │ │ │ ├── preview-rtl.png │ │ │ └── preview.png │ │ ├── preview-rtl.png │ │ └── preview.png │ ├── images │ │ └── pagebreak.gif │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ ├── preview.html │ └── styles │ │ └── screen.css ├── print │ ├── icons │ │ ├── hidpi │ │ │ └── print.png │ │ └── print.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── removeformat │ ├── icons │ │ ├── hidpi │ │ │ └── removeformat.png │ │ └── removeformat.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── resize │ └── plugin.js ├── richcombo │ └── plugin.js ├── save │ ├── icons │ │ ├── hidpi │ │ │ └── save.png │ │ └── save.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── selectall │ ├── icons │ │ ├── hidpi │ │ │ └── selectall.png │ │ └── selectall.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── sharedspace │ ├── plugin.js │ └── samples │ │ └── sharedspace.html ├── showblocks │ ├── icons │ │ ├── hidpi │ │ │ ├── showblocks-rtl.png │ │ │ └── showblocks.png │ │ ├── showblocks-rtl.png │ │ └── showblocks.png │ ├── images │ │ ├── block_address.png │ │ ├── block_blockquote.png │ │ ├── block_div.png │ │ ├── block_h1.png │ │ ├── block_h2.png │ │ ├── block_h3.png │ │ ├── block_h4.png │ │ ├── block_h5.png │ │ ├── block_h6.png │ │ ├── block_p.png │ │ └── block_pre.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── showborders │ └── plugin.js ├── smiley │ ├── dialogs │ │ └── smiley.js │ ├── icons │ │ ├── hidpi │ │ │ └── smiley.png │ │ └── smiley.png │ ├── images │ │ ├── angel_smile.gif │ │ ├── angel_smile.png │ │ ├── angry_smile.gif │ │ ├── angry_smile.png │ │ ├── broken_heart.gif │ │ ├── broken_heart.png │ │ ├── confused_smile.gif │ │ ├── confused_smile.png │ │ ├── cry_smile.gif │ │ ├── cry_smile.png │ │ ├── devil_smile.gif │ │ ├── devil_smile.png │ │ ├── embaressed_smile.gif │ │ ├── embarrassed_smile.gif │ │ ├── embarrassed_smile.png │ │ ├── envelope.gif │ │ ├── envelope.png │ │ ├── heart.gif │ │ ├── heart.png │ │ ├── kiss.gif │ │ ├── kiss.png │ │ ├── lightbulb.gif │ │ ├── lightbulb.png │ │ ├── omg_smile.gif │ │ ├── omg_smile.png │ │ ├── regular_smile.gif │ │ ├── regular_smile.png │ │ ├── sad_smile.gif │ │ ├── sad_smile.png │ │ ├── shades_smile.gif │ │ ├── shades_smile.png │ │ ├── teeth_smile.gif │ │ ├── teeth_smile.png │ │ ├── thumbs_down.gif │ │ ├── thumbs_down.png │ │ ├── thumbs_up.gif │ │ ├── thumbs_up.png │ │ ├── tongue_smile.gif │ │ ├── tongue_smile.png │ │ ├── tounge_smile.gif │ │ ├── whatchutalkingabout_smile.gif │ │ ├── whatchutalkingabout_smile.png │ │ ├── wink_smile.gif │ │ └── wink_smile.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── sourcearea │ ├── icons │ │ ├── hidpi │ │ │ ├── source-rtl.png │ │ │ └── source.png │ │ ├── source-rtl.png │ │ └── source.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── sourcedialog │ ├── dialogs │ │ └── sourcedialog.js │ ├── icons │ │ ├── hidpi │ │ │ ├── sourcedialog-rtl.png │ │ │ └── sourcedialog.png │ │ ├── sourcedialog-rtl.png │ │ └── sourcedialog.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ └── samples │ │ └── sourcedialog.html ├── specialchar │ ├── dialogs │ │ ├── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es-mx.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ └── specialchar.js │ ├── icons │ │ ├── hidpi │ │ │ └── specialchar.png │ │ └── specialchar.png │ ├── lang │ │ ├── _translationstatus.txt │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── stylescombo │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── stylesheetparser │ ├── plugin.js │ └── samples │ │ ├── assets │ │ └── sample.css │ │ └── stylesheetparser.html ├── tab │ └── plugin.js ├── table │ ├── dialogs │ │ └── table.js │ ├── icons │ │ ├── hidpi │ │ │ └── table.png │ │ └── table.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── tableresize │ ├── dev │ │ └── tableresize.html │ ├── plugin.js │ └── samples │ │ └── tableresize.html ├── tableselection │ ├── plugin.js │ └── styles │ │ └── tableselection.css ├── tabletools │ ├── dialogs │ │ └── tableCell.js │ └── plugin.js ├── templates │ ├── dialogs │ │ ├── templates.css │ │ └── templates.js │ ├── icons │ │ ├── hidpi │ │ │ ├── templates-rtl.png │ │ │ └── templates.png │ │ ├── templates-rtl.png │ │ └── templates.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ ├── templatedefinition.js │ └── templates │ │ ├── default.js │ │ └── images │ │ ├── template1.gif │ │ ├── template2.gif │ │ └── template3.gif ├── textmatch │ └── plugin.js ├── textwatcher │ └── plugin.js ├── toolbar │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ └── samples │ │ └── toolbar.html ├── uicolor │ ├── dialogs │ │ ├── uicolor.css │ │ └── uicolor.js │ ├── icons │ │ ├── hidpi │ │ │ └── uicolor.png │ │ └── uicolor.png │ ├── lang │ │ ├── _translationstatus.txt │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugin.js │ └── samples │ │ └── uicolor.html ├── undo │ ├── dev │ │ └── snapshot.html │ ├── icons │ │ ├── hidpi │ │ │ ├── redo-rtl.png │ │ │ ├── redo.png │ │ │ ├── undo-rtl.png │ │ │ └── undo.png │ │ ├── redo-rtl.png │ │ ├── redo.png │ │ ├── undo-rtl.png │ │ └── undo.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── uploadfile │ └── plugin.js ├── uploadimage │ └── plugin.js ├── uploadwidget │ ├── dev │ │ ├── cors.html │ │ ├── filereaderplugin.js │ │ └── upload.html │ ├── lang │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── widget │ ├── dev │ │ ├── assets │ │ │ ├── contents.css │ │ │ ├── sample.jpg │ │ │ └── simplebox │ │ │ │ ├── contents.css │ │ │ │ ├── dialogs │ │ │ │ └── simplebox.js │ │ │ │ ├── icons │ │ │ │ └── simplebox.png │ │ │ │ └── plugin.js │ │ ├── console.js │ │ ├── nestedwidgets.html │ │ └── widgetstyles.html │ ├── images │ │ └── handle.png │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ └── plugin.js ├── widgetselection │ └── plugin.js ├── wysiwygarea │ ├── plugin.js │ └── samples │ │ └── fullpage.html └── xml │ └── plugin.js ├── samples ├── css │ └── samples.css ├── img │ ├── github-top.png │ ├── header-bg.png │ ├── header-separator.png │ ├── logo.png │ ├── logo.svg │ └── navigation-tip.png ├── index.html ├── js │ ├── sample.js │ └── sf.js ├── less │ ├── custom.less │ └── samples.less ├── old │ ├── ajax.html │ ├── api.html │ ├── appendto.html │ ├── assets │ │ ├── inlineall │ │ │ └── logo.png │ │ ├── outputxhtml │ │ │ └── outputxhtml.css │ │ ├── posteddata.php │ │ ├── sample.jpg │ │ └── uilanguages │ │ │ └── languages.js │ ├── datafiltering.html │ ├── divreplace.html │ ├── index.html │ ├── inlineall.html │ ├── inlinebycode.html │ ├── inlinetextarea.html │ ├── jquery.html │ ├── readonly.html │ ├── replacebyclass.html │ ├── replacebycode.html │ ├── sample.css │ ├── sample.js │ ├── sample_posteddata.php │ ├── tabindex.html │ ├── uicolor.html │ ├── uilanguages.html │ └── xhtmlstyle.html └── toolbarconfigurator │ ├── bender.js │ ├── css │ └── fontello.css │ ├── font │ ├── LICENSE.txt │ ├── config.json │ ├── fontello.eot │ ├── fontello.svg │ ├── fontello.ttf │ └── fontello.woff │ ├── index.html │ ├── js │ ├── abstracttoolbarmodifier.js │ ├── fulltoolbareditor.js │ ├── toolbarmodifier.js │ └── toolbartextmodifier.js │ ├── less │ ├── base.less │ └── toolbarmodifier.less │ ├── lib │ └── codemirror │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codemirror.css │ │ ├── codemirror.js │ │ ├── javascript.js │ │ ├── neo.css │ │ ├── show-hint.css │ │ └── show-hint.js │ ├── package.json │ └── tests │ └── one.js ├── skins ├── kama │ ├── colorpanel.css │ ├── dialog.css │ ├── dialog_ie.css │ ├── dialog_ie7.css │ ├── dialog_ie8.css │ ├── dialog_iequirks.css │ ├── editor.css │ ├── editor_ie.css │ ├── editor_ie7.css │ ├── editor_ie8.css │ ├── editor_iequirks.css │ ├── elementspath.css │ ├── icons │ │ ├── about.png │ │ ├── anchor-rtl.png │ │ ├── anchor.png │ │ ├── bgcolor.png │ │ ├── bidiltr.png │ │ ├── bidirtl.png │ │ ├── blockquote.png │ │ ├── bold.png │ │ ├── bulletedlist-rtl.png │ │ ├── bulletedlist.png │ │ ├── button.png │ │ ├── checkbox.png │ │ ├── copy-rtl.png │ │ ├── copy.png │ │ ├── creatediv.png │ │ ├── cut-rtl.png │ │ ├── cut.png │ │ ├── docprops-rtl.png │ │ ├── docprops.png │ │ ├── find-rtl.png │ │ ├── find.png │ │ ├── flash.png │ │ ├── form.png │ │ ├── hiddenfield.png │ │ ├── horizontalrule.png │ │ ├── icons.png │ │ ├── iframe.png │ │ ├── image.png │ │ ├── imagebutton.png │ │ ├── indent-rtl.png │ │ ├── indent.png │ │ ├── italic.png │ │ ├── justifyblock.png │ │ ├── justifycenter.png │ │ ├── justifyleft.png │ │ ├── justifyright.png │ │ ├── link.png │ │ ├── maximize.png │ │ ├── newpage-rtl.png │ │ ├── newpage.png │ │ ├── numberedlist-rtl.png │ │ ├── numberedlist.png │ │ ├── outdent-rtl.png │ │ ├── outdent.png │ │ ├── pagebreak-rtl.png │ │ ├── pagebreak.png │ │ ├── paste-rtl.png │ │ ├── paste.png │ │ ├── pastefromword-rtl.png │ │ ├── pastefromword.png │ │ ├── pastetext-rtl.png │ │ ├── pastetext.png │ │ ├── placeholder.png │ │ ├── preview-rtl.png │ │ ├── preview.png │ │ ├── print.png │ │ ├── radio.png │ │ ├── redo-rtl.png │ │ ├── redo.png │ │ ├── removeformat.png │ │ ├── replace.png │ │ ├── save.png │ │ ├── scayt.png │ │ ├── select-rtl.png │ │ ├── select.png │ │ ├── selectall.png │ │ ├── showblocks-rtl.png │ │ ├── showblocks.png │ │ ├── smiley.png │ │ ├── source-rtl.png │ │ ├── source.png │ │ ├── specialchar.png │ │ ├── spellchecker.png │ │ ├── strike.png │ │ ├── subscript.png │ │ ├── superscript.png │ │ ├── table.png │ │ ├── templates-rtl.png │ │ ├── templates.png │ │ ├── textarea-rtl.png │ │ ├── textarea.png │ │ ├── textcolor.png │ │ ├── textfield.png │ │ ├── underline.png │ │ ├── undo-rtl.png │ │ ├── undo.png │ │ └── unlink.png │ ├── images │ │ ├── dialog_sides.gif │ │ ├── dialog_sides.png │ │ ├── dialog_sides_rtl.png │ │ ├── mini.gif │ │ ├── spinner.gif │ │ ├── sprites.png │ │ ├── sprites_ie6.png │ │ └── toolbar_start.gif │ ├── mainui.css │ ├── menu.css │ ├── notification.css │ ├── panel.css │ ├── presets.css │ ├── readme.md │ ├── reset.css │ ├── richcombo.css │ ├── skin.js │ └── toolbar.css ├── moono-lisa │ ├── colorpanel.css │ ├── dev │ │ ├── icons16.png │ │ ├── icons16.svg │ │ ├── icons32.png │ │ ├── icons32.svg │ │ └── locations.json │ ├── dialog.css │ ├── dialog_ie.css │ ├── dialog_ie8.css │ ├── dialog_iequirks.css │ ├── editor.css │ ├── editor_gecko.css │ ├── editor_ie.css │ ├── editor_ie8.css │ ├── editor_iequirks.css │ ├── elementspath.css │ ├── images │ │ ├── arrow.png │ │ ├── close.png │ │ ├── hidpi │ │ │ ├── close.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ └── refresh.png │ │ ├── lock-open.png │ │ ├── lock.png │ │ ├── refresh.png │ │ └── spinner.gif │ ├── mainui.css │ ├── menu.css │ ├── notification.css │ ├── panel.css │ ├── presets.css │ ├── readme.md │ ├── reset.css │ ├── richcombo.css │ ├── skin.js │ └── toolbar.css └── moono │ ├── colorpanel.css │ ├── dev │ ├── icons16.png │ ├── icons16.svg │ ├── icons32.png │ ├── icons32.svg │ └── locations.json │ ├── dialog.css │ ├── dialog_ie.css │ ├── dialog_ie7.css │ ├── dialog_ie8.css │ ├── dialog_iequirks.css │ ├── editor.css │ ├── editor_gecko.css │ ├── editor_ie.css │ ├── editor_ie7.css │ ├── editor_ie8.css │ ├── editor_iequirks.css │ ├── elementspath.css │ ├── icons │ ├── about.png │ ├── anchor-rtl.png │ ├── anchor.png │ ├── bgcolor.png │ ├── bidiltr.png │ ├── bidirtl.png │ ├── blockquote.png │ ├── bold.png │ ├── bulletedlist-rtl.png │ ├── bulletedlist.png │ ├── button.png │ ├── checkbox.png │ ├── codesnippet.png │ ├── copy-rtl.png │ ├── copy.png │ ├── copyformatting.png │ ├── creatediv.png │ ├── cut-rtl.png │ ├── cut.png │ ├── docprops-rtl.png │ ├── docprops.png │ ├── find-rtl.png │ ├── find.png │ ├── flash.png │ ├── form.png │ ├── hiddenfield.png │ ├── hidpi │ │ ├── about.png │ │ ├── anchor-rtl.png │ │ ├── anchor.png │ │ ├── bgcolor.png │ │ ├── bidiltr.png │ │ ├── bidirtl.png │ │ ├── blockquote.png │ │ ├── bold.png │ │ ├── bulletedlist-rtl.png │ │ ├── bulletedlist.png │ │ ├── button.png │ │ ├── checkbox.png │ │ ├── codesnippet.png │ │ ├── copy-rtl.png │ │ ├── copy.png │ │ ├── copyformatting.png │ │ ├── creatediv.png │ │ ├── cut-rtl.png │ │ ├── cut.png │ │ ├── docprops-rtl.png │ │ ├── docprops.png │ │ ├── find-rtl.png │ │ ├── find.png │ │ ├── flash.png │ │ ├── form.png │ │ ├── hiddenfield.png │ │ ├── horizontalrule.png │ │ ├── iframe.png │ │ ├── image.png │ │ ├── imagebutton.png │ │ ├── indent-rtl.png │ │ ├── indent.png │ │ ├── italic.png │ │ ├── justifyblock.png │ │ ├── justifycenter.png │ │ ├── justifyleft.png │ │ ├── justifyright.png │ │ ├── language.png │ │ ├── link.png │ │ ├── maximize.png │ │ ├── newpage-rtl.png │ │ ├── newpage.png │ │ ├── numberedlist-rtl.png │ │ ├── numberedlist.png │ │ ├── outdent-rtl.png │ │ ├── outdent.png │ │ ├── pagebreak-rtl.png │ │ ├── pagebreak.png │ │ ├── paste-rtl.png │ │ ├── paste.png │ │ ├── pastefromword-rtl.png │ │ ├── pastefromword.png │ │ ├── pastetext-rtl.png │ │ ├── pastetext.png │ │ ├── placeholder.png │ │ ├── preview-rtl.png │ │ ├── preview.png │ │ ├── print.png │ │ ├── radio.png │ │ ├── redo-rtl.png │ │ ├── redo.png │ │ ├── removeformat.png │ │ ├── replace.png │ │ ├── save.png │ │ ├── scayt.png │ │ ├── select-rtl.png │ │ ├── select.png │ │ ├── selectall.png │ │ ├── showblocks-rtl.png │ │ ├── showblocks.png │ │ ├── smiley.png │ │ ├── source-rtl.png │ │ ├── source.png │ │ ├── sourcedialog-rtl.png │ │ ├── sourcedialog.png │ │ ├── specialchar.png │ │ ├── spellchecker.png │ │ ├── strike.png │ │ ├── subscript.png │ │ ├── superscript.png │ │ ├── table.png │ │ ├── templates-rtl.png │ │ ├── templates.png │ │ ├── textarea-rtl.png │ │ ├── textarea.png │ │ ├── textcolor.png │ │ ├── textfield-rtl.png │ │ ├── textfield.png │ │ ├── uicolor.png │ │ ├── underline.png │ │ ├── undo-rtl.png │ │ ├── undo.png │ │ └── unlink.png │ ├── horizontalrule.png │ ├── iframe.png │ ├── image.png │ ├── imagebutton.png │ ├── indent-rtl.png │ ├── indent.png │ ├── italic.png │ ├── justifyblock.png │ ├── justifycenter.png │ ├── justifyleft.png │ ├── justifyright.png │ ├── language.png │ ├── link.png │ ├── maximize.png │ ├── newpage-rtl.png │ ├── newpage.png │ ├── numberedlist-rtl.png │ ├── numberedlist.png │ ├── outdent-rtl.png │ ├── outdent.png │ ├── pagebreak-rtl.png │ ├── pagebreak.png │ ├── paste-rtl.png │ ├── paste.png │ ├── pastefromword-rtl.png │ ├── pastefromword.png │ ├── pastetext-rtl.png │ ├── pastetext.png │ ├── placeholder.png │ ├── preview-rtl.png │ ├── preview.png │ ├── print.png │ ├── radio.png │ ├── redo-rtl.png │ ├── redo.png │ ├── removeformat.png │ ├── replace.png │ ├── save.png │ ├── scayt.png │ ├── select-rtl.png │ ├── select.png │ ├── selectall.png │ ├── showblocks-rtl.png │ ├── showblocks.png │ ├── smiley.png │ ├── source-rtl.png │ ├── source.png │ ├── sourcedialog-rtl.png │ ├── sourcedialog.png │ ├── specialchar.png │ ├── spellchecker.png │ ├── strike.png │ ├── subscript.png │ ├── superscript.png │ ├── table.png │ ├── templates-rtl.png │ ├── templates.png │ ├── textarea-rtl.png │ ├── textarea.png │ ├── textcolor.png │ ├── textfield-rtl.png │ ├── textfield.png │ ├── uicolor.png │ ├── underline.png │ ├── undo-rtl.png │ ├── undo.png │ └── unlink.png │ ├── images │ ├── anchor.png │ ├── arrow.png │ ├── close.png │ ├── hidpi │ │ ├── anchor.png │ │ ├── close.png │ │ ├── lock-open.png │ │ ├── lock.png │ │ └── refresh.png │ ├── lock-open.png │ ├── lock.png │ ├── refresh.png │ └── spinner.gif │ ├── mainui.css │ ├── menu.css │ ├── notification.css │ ├── panel.css │ ├── presets.css │ ├── readme.md │ ├── reset.css │ ├── richcombo.css │ ├── skin.js │ └── toolbar.css ├── styles.js ├── tests ├── _assets │ ├── cog.svg │ ├── custom_styles.js │ ├── img.gif │ ├── large.jpg │ ├── le na.jpg │ ├── lena.jpg │ ├── logo.png │ ├── performance_image.jpg │ ├── queue1.js │ ├── queue2.js │ ├── queue3.js │ ├── sample.css │ ├── sample.js │ ├── sample.swf │ ├── sample.txt │ ├── sample.xml │ ├── sample_icon.hidpi.png │ ├── sample_icon.png │ ├── sample_xml.txt │ └── test_icon.png ├── _benderjs │ ├── ckeditor │ │ ├── lib │ │ │ ├── index.js │ │ │ ├── pagebuilder.js │ │ │ └── testbuilder.js │ │ ├── package.json │ │ └── static │ │ │ ├── activate.js │ │ │ ├── bot.js │ │ │ ├── extensions.js │ │ │ └── tools.js │ └── ssl │ │ ├── cert.pem │ │ └── key.pem ├── adapters │ └── jquery │ │ ├── _assets │ │ └── jquery.form.js │ │ ├── events.html │ │ ├── events.js │ │ ├── form.html │ │ ├── form.js │ │ ├── instance.html │ │ ├── instance.js │ │ ├── manual │ │ ├── nockeditor.html │ │ ├── nockeditor.md │ │ ├── nojquery.html │ │ └── nojquery.md │ │ ├── val.html │ │ └── val.js ├── core │ ├── ckeditor │ │ ├── addcss.js │ │ ├── appendtimestamp.js │ │ ├── basepathglobal.html │ │ ├── basepathglobal.js │ │ ├── basepathproperty.html │ │ ├── basepathproperty.js │ │ ├── ckeditor.html │ │ ├── ckeditor.js │ │ ├── detachready.js │ │ ├── geturl.js │ │ └── manual │ │ │ ├── _assets │ │ │ └── hctest.html │ │ │ ├── assetscachekey.html │ │ │ ├── assetscachekey.md │ │ │ ├── assetscachekeycdn.html │ │ │ ├── assetscachekeycdn.md │ │ │ ├── hcdetection.html │ │ │ ├── hcdetection.md │ │ │ ├── hcdetectionajax.html │ │ │ ├── hcdetectionajax.md │ │ │ ├── hcdetectionunsupported.html │ │ │ ├── hcdetectionunsupported.md │ │ │ ├── strictmode.html │ │ │ └── strictmode.md │ ├── command │ │ ├── command.js │ │ └── events.js │ ├── config │ │ ├── htmlencodeoutput.js │ │ ├── ignoreemptyparagraph.js │ │ ├── inline.html │ │ ├── inline.js │ │ ├── inline2.html │ │ ├── inline2.js │ │ ├── manual │ │ │ ├── extraplugins.html │ │ │ ├── extraplugins.md │ │ │ ├── plugins.html │ │ │ ├── plugins.md │ │ │ ├── pluginsarray.html │ │ │ ├── pluginsarray.md │ │ │ ├── removeplugins.html │ │ │ ├── removeplugins.md │ │ │ ├── startupfocusend.html │ │ │ └── startupfocusend.md │ │ ├── plugins.js │ │ ├── size.js │ │ ├── startupfocus.html │ │ ├── startupfocus.js │ │ ├── style.js │ │ ├── themedui.html │ │ ├── themedui.js │ │ ├── themedui2.html │ │ └── themedui2.js │ ├── creators │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── aria.js │ │ ├── creators.js │ │ ├── detachedappendto.js │ │ ├── detachedinline.html │ │ ├── detachedinline.js │ │ ├── detachedreplace.html │ │ ├── detachedreplace.js │ │ ├── domready.html │ │ ├── domready.js │ │ ├── duplicates.html │ │ ├── duplicates.js │ │ ├── editor_name.html │ │ ├── editor_name.js │ │ ├── inline-textarea.html │ │ ├── inline-textarea.js │ │ ├── inline.html │ │ ├── inline.js │ │ ├── inlineallonalreadyinlined.html │ │ ├── inlineallonalreadyinlined.js │ │ ├── manual │ │ │ ├── detachedcancelinterval.html │ │ │ ├── detachedcancelinterval.md │ │ │ ├── detachedcustomcallback.html │ │ │ ├── detachedcustomcallback.md │ │ │ ├── detachedcustomcallbackmobile.html │ │ │ ├── detachedcustomcallbackmobile.md │ │ │ ├── detachedcustominterval.html │ │ │ ├── detachedcustominterval.md │ │ │ ├── detachedcustomintervalmobile.html │ │ │ ├── detachedcustomintervalmobile.md │ │ │ ├── detacheddefault.html │ │ │ ├── detacheddefault.md │ │ │ ├── inlineallonalreadyinlined.html │ │ │ ├── inlineallonalreadyinlined.md │ │ │ ├── inlinecustomlabels.html │ │ │ ├── inlinecustomlabels.md │ │ │ ├── inlinedisabledapplicationlabels.html │ │ │ ├── inlinedisabledapplicationlabels.md │ │ │ ├── inlinedisablededitorlabels.html │ │ │ ├── inlinedisablededitorlabels.md │ │ │ ├── inlinelabels.html │ │ │ ├── inlinelabels.md │ │ │ ├── inlinereadonly.html │ │ │ ├── inlinereadonly.md │ │ │ ├── resizewithcssunits.html │ │ │ ├── resizewithcssunits.md │ │ │ ├── themeduicustomlabels.html │ │ │ ├── themeduicustomlabels.md │ │ │ ├── themeduidisabledapplicationlabels.html │ │ │ ├── themeduidisabledapplicationlabels.md │ │ │ ├── themeduidisablededitorlabels.html │ │ │ ├── themeduidisablededitorlabels.md │ │ │ ├── themeduilabels.html │ │ │ └── themeduilabels.md │ │ ├── required.html │ │ ├── required.js │ │ ├── setmode.js │ │ └── themedui.js │ ├── dom │ │ ├── _helpers │ │ │ └── domobject.js │ │ ├── comment.html │ │ ├── comment.js │ │ ├── document.html │ │ ├── document.js │ │ ├── documentfragment.html │ │ ├── documentfragment.js │ │ ├── element │ │ │ ├── _assets │ │ │ │ ├── framerect.html │ │ │ │ └── rect.html │ │ │ ├── absoluterect.html │ │ │ ├── absoluterect.js │ │ │ ├── element.html │ │ │ ├── element.js │ │ │ ├── geteditor.html │ │ │ ├── geteditor.js │ │ │ ├── isdetached.js │ │ │ ├── manual │ │ │ │ ├── absoluterect.html │ │ │ │ └── absoluterect.md │ │ │ ├── scrollintoview.html │ │ │ └── scrollintoview.js │ │ ├── elementpath.html │ │ ├── elementpath.js │ │ ├── elementpath │ │ │ ├── editor.html │ │ │ ├── editor.js │ │ │ ├── elementpath.html │ │ │ └── elementpath.js │ │ ├── iterator.html │ │ ├── iterator.js │ │ ├── node.html │ │ ├── node.js │ │ ├── nodelist.html │ │ ├── nodelist.js │ │ ├── range │ │ │ ├── blockindication.html │ │ │ ├── blockindication.js │ │ │ ├── bookmarks.js │ │ │ ├── clonecontents.html │ │ │ ├── clonecontents.js │ │ │ ├── deletecontents.html │ │ │ ├── deletecontents.js │ │ │ ├── editablenode.js │ │ │ ├── enlarge.html │ │ │ ├── enlarge.js │ │ │ ├── equals.js │ │ │ ├── extractcontents.html │ │ │ ├── extractcontents.js │ │ │ ├── find.html │ │ │ ├── find.js │ │ │ ├── fixblock.js │ │ │ ├── getclientrects.html │ │ │ ├── getclientrects.js │ │ │ ├── getclientrectsabsolute.html │ │ │ ├── getclientrectsabsolute.js │ │ │ ├── getclientrectswidget.js │ │ │ ├── getclientrectswitheditor.html │ │ │ ├── getclientrectswitheditor.js │ │ │ ├── getcommonancestor.html │ │ │ ├── getcommonancestor.js │ │ │ ├── gettableelement.html │ │ │ ├── gettableelement.js │ │ │ ├── insertnode.html │ │ │ ├── insertnode.js │ │ │ ├── manual │ │ │ │ ├── clonecontentsdoesnotaffectselection.html │ │ │ │ ├── clonecontentsdoesnotaffectselection.md │ │ │ │ ├── clonecontentsstartnodeproblem.html │ │ │ │ ├── clonecontentsstartnodeproblem.md │ │ │ │ ├── deleteextractcontent.html │ │ │ │ ├── deleteextractcontent.md │ │ │ │ ├── extractcontentsreturnproperstructure.html │ │ │ │ ├── extractcontentsreturnproperstructure.md │ │ │ │ ├── followingfcs.html │ │ │ │ ├── followingfcs.md │ │ │ │ ├── getclientrects.html │ │ │ │ ├── getclientrects.md │ │ │ │ ├── getclientrectswitheditor.html │ │ │ │ ├── getclientrectswitheditor.md │ │ │ │ ├── gettableelement.html │ │ │ │ └── gettableelement.md │ │ │ ├── mergeranges.html │ │ │ ├── mergeranges.js │ │ │ ├── misc.html │ │ │ ├── misc.js │ │ │ ├── movetoeditable.html │ │ │ ├── movetoeditable.js │ │ │ ├── movetoelement.html │ │ │ ├── movetoelement.js │ │ │ ├── native.js │ │ │ ├── setposition.html │ │ │ ├── setposition.js │ │ │ ├── shrink.html │ │ │ ├── shrink.js │ │ │ ├── split.html │ │ │ └── split.js │ │ ├── rangelist.html │ │ ├── rangelist.js │ │ ├── text.html │ │ ├── text.js │ │ ├── walker.html │ │ ├── walker.js │ │ ├── window.html │ │ └── window.js │ ├── editable │ │ ├── _assets │ │ │ └── frame_content.html │ │ ├── _docs │ │ │ └── blockselections.txt │ │ ├── _helpers │ │ │ └── insertion.js │ │ ├── aria.js │ │ ├── domfix.html │ │ ├── domfix.js │ │ ├── domfix2.html │ │ ├── domfix2.js │ │ ├── domfix3.js │ │ ├── domfixnestededitable.js │ │ ├── editable.html │ │ ├── editable.js │ │ ├── enterdiv.js │ │ ├── events.html │ │ ├── events.js │ │ ├── getextracthtmlfromrange.html │ │ ├── getextracthtmlfromrange.js │ │ ├── getuniqueid.js │ │ ├── insertelement.html │ │ ├── insertelement.js │ │ ├── insertelementinto.html │ │ ├── insertelementinto.js │ │ ├── inserthtml.html │ │ ├── inserthtml.js │ │ ├── inserthtmlautoparagraphing.html │ │ ├── inserthtmlautoparagraphing.js │ │ ├── inserthtmlbrmode.html │ │ ├── inserthtmlbrmode.js │ │ ├── inserthtmlinto.js │ │ ├── inserthtmlstripped.html │ │ ├── inserthtmlstripped.js │ │ ├── insertion.html │ │ ├── insertion.js │ │ ├── insertlist.html │ │ ├── insertlist.js │ │ ├── inserttext.html │ │ ├── inserttext.js │ │ ├── keystrokes │ │ │ ├── delbackspacequirks │ │ │ │ ├── _helpers │ │ │ │ │ └── tools.js │ │ │ │ ├── collapsed.html │ │ │ │ ├── collapsed.js │ │ │ │ ├── expanded.html │ │ │ │ ├── expanded.js │ │ │ │ └── manual │ │ │ │ │ ├── nbspbackspacing.html │ │ │ │ │ ├── nbspbackspacing.md │ │ │ │ │ ├── nbspdeleting.html │ │ │ │ │ ├── nbspdeleting.md │ │ │ │ │ ├── noselection.html │ │ │ │ │ ├── noselection.md │ │ │ │ │ ├── readonly.html │ │ │ │ │ └── readonly.md │ │ │ └── keystrokes.js │ │ ├── manual │ │ │ ├── _assets │ │ │ │ └── styles.css │ │ │ ├── ariareadonlyscreenreader.html │ │ │ ├── ariareadonlyscreenreader.md │ │ │ ├── edgefirstfocus.html │ │ │ ├── edgefirstfocus.md │ │ │ ├── enterbr.html │ │ │ ├── enterbr.md │ │ │ ├── enterdiv.html │ │ │ ├── enterdiv.md │ │ │ ├── enterdivemptypaste.html │ │ │ ├── enterdivemptypaste.md │ │ │ ├── insert.html │ │ │ ├── insert.md │ │ │ ├── insertgetdata.html │ │ │ ├── insertgetdata.md │ │ │ ├── multilinejaws.html │ │ │ ├── multilinejaws.md │ │ │ ├── noneditableimage.html │ │ │ ├── noneditableimage.md │ │ │ ├── notwantedelementsonselectallandbackspace.html │ │ │ ├── notwantedelementsonselectallandbackspace.md │ │ │ ├── notwantedelementsonselectallandbackspaceedge.html │ │ │ ├── notwantedelementsonselectallandbackspaceedge.md │ │ │ ├── pastearabic.html │ │ │ ├── pastearabic.md │ │ │ ├── pastearabicenterbr.html │ │ │ ├── pastearabicenterbr.md │ │ │ ├── removelistatoffset.html │ │ │ ├── removelistatoffset.md │ │ │ ├── removelistswithmagicline.html │ │ │ ├── removelistswithmagicline.md │ │ │ ├── removemultiplelists.html │ │ │ ├── removemultiplelists.md │ │ │ ├── removemultiplelistswithmagicline.html │ │ │ ├── removemultiplelistswithmagicline.md │ │ │ ├── scrollandfocus.html │ │ │ ├── scrollandfocus.md │ │ │ ├── typeime.html │ │ │ └── typeime.md │ │ ├── misc.js │ │ ├── readonly.html │ │ ├── readonly.js │ │ ├── removemultiplelist.html │ │ ├── removemultiplelist.js │ │ ├── setgetdata.html │ │ ├── setgetdata.js │ │ ├── status.html │ │ ├── status.js │ │ ├── tabindex.html │ │ ├── tabindex.js │ │ ├── textnormalization.js │ │ ├── wysiwyg.html │ │ └── wysiwyg.js │ ├── editor │ │ ├── _assets │ │ │ ├── custom_config_1.js │ │ │ ├── custom_config_2.js │ │ │ ├── raceconfig1.js │ │ │ ├── raceconfig2.js │ │ │ └── raceconfig3.js │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── applicationtitle.js │ │ ├── currentInstance.js │ │ ├── custom_config_race.html │ │ ├── custom_config_race.js │ │ ├── default_lang_1.js │ │ ├── default_lang_2.js │ │ ├── destroy.html │ │ ├── destroy.js │ │ ├── destroyrace.html │ │ ├── destroyrace.js │ │ ├── detaching.html │ │ ├── detaching.js │ │ ├── dirty.js │ │ ├── editor.html │ │ ├── editor.js │ │ ├── focus.html │ │ ├── focus.js │ │ ├── getextractselectedhtml.js │ │ ├── initialize_hidden.html │ │ ├── initialize_hidden.js │ │ ├── keystrokehandler.html │ │ ├── keystrokehandler.js │ │ ├── manual │ │ │ ├── commandkeystrokeall.html │ │ │ ├── commandkeystrokeall.md │ │ │ ├── customconfigrace.html │ │ │ ├── customconfigrace.md │ │ │ ├── filterdestroy.html │ │ │ ├── filterdestroy.md │ │ │ ├── focusdestroy.html │ │ │ └── focusdestroy.md │ │ ├── readonly.html │ │ ├── readonly.js │ │ ├── stylesset.js │ │ ├── title.html │ │ └── title.js │ ├── env.js │ ├── event.js │ ├── filter │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── activefilter.js │ │ ├── api.js │ │ ├── blacklisting.html │ │ ├── blacklisting.js │ │ ├── check.js │ │ ├── clone.js │ │ ├── editor.html │ │ ├── editor.js │ │ ├── elementcallback.html │ │ ├── elementcallback.js │ │ ├── entermodeintegration.html │ │ ├── entermodeintegration.js │ │ ├── filter.html │ │ ├── filter.js │ │ ├── manual │ │ │ ├── bordershorthandtransformation.html │ │ │ ├── bordershorthandtransformation.md │ │ │ ├── classcheckinlexicalorder.html │ │ │ ├── classcheckinlexicalorder.md │ │ │ ├── margintransformation.html │ │ │ └── margintransformation.md │ │ └── transformations.js │ ├── focusmanager │ │ ├── editor.html │ │ ├── editor.js │ │ ├── focus.html │ │ ├── focusmanager.html │ │ ├── focusmanager.js │ │ ├── lostfocus.html │ │ ├── lostfocus.js │ │ └── manual │ │ │ ├── sourcemodeblur.html │ │ │ └── sourcemodeblur.md │ ├── htmldataprocessor │ │ ├── customtag.js │ │ ├── htmldataprocessor.html │ │ ├── htmldataprocessor.js │ │ └── manual │ │ │ ├── customtag.html │ │ │ ├── customtag.md │ │ │ ├── srcdoc.html │ │ │ └── srcdoc.md │ ├── htmlparser │ │ ├── comments.js │ │ ├── element.html │ │ ├── element.js │ │ ├── elementfindone.js │ │ ├── filter.js │ │ ├── fragment │ │ │ ├── foreach.js │ │ │ ├── fromhtml.html │ │ │ └── fromhtml.js │ │ ├── htmlparser.js │ │ ├── manual │ │ │ ├── comment.html │ │ │ ├── comment.md │ │ │ ├── preserveinlinestyling.html │ │ │ ├── preserveinlinestyling.md │ │ │ ├── shiftlinebreak.html │ │ │ └── shiftlinebreak.md │ │ └── node.js │ ├── lang.js │ ├── language │ │ └── manual │ │ │ ├── language.html │ │ │ └── language.md │ ├── loader.js │ ├── log.js │ ├── manual │ │ ├── eventdatafalse.html │ │ ├── eventdatafalse.md │ │ ├── src.html │ │ ├── src.md │ │ ├── versioncheck.html │ │ ├── versioncheck.md │ │ ├── versioncheckmultiple.html │ │ ├── versioncheckmultiple.md │ │ ├── versionchecknonotification.html │ │ └── versionchecknonotification.md │ ├── plugins │ │ ├── _assets │ │ │ └── myplugins │ │ │ │ ├── plugin1 │ │ │ │ └── plugin.js │ │ │ │ ├── plugin2 │ │ │ │ └── plugin.js │ │ │ │ ├── plugin3 │ │ │ │ └── myplugin.js │ │ │ │ ├── plugin4 │ │ │ │ └── plugin.js │ │ │ │ └── sample │ │ │ │ └── my_plugin.js │ │ ├── plugins.html │ │ └── plugins.js │ ├── scriptloader.js │ ├── selection │ │ ├── _helpers │ │ │ ├── rangy.js │ │ │ └── tools.js │ │ ├── editor.html │ │ ├── editor.js │ │ ├── fake.html │ │ ├── fake.js │ │ ├── manual │ │ │ ├── commandsrefresh.html │ │ │ ├── commandsrefresh.md │ │ │ ├── edgefakewysiwygarea.html │ │ │ ├── edgefakewysiwygarea.md │ │ │ ├── focusaftersettingdata.html │ │ │ ├── focusaftersettingdata.md │ │ │ ├── focusafterundoing.html │ │ │ ├── focusafterundoing.md │ │ │ ├── focusnestededitable.html │ │ │ ├── focusnestededitable.md │ │ │ ├── hiddenselcontainer.html │ │ │ ├── hiddenselcontainer.md │ │ │ ├── iecontenteditablefalse.html │ │ │ ├── iecontenteditablefalse.md │ │ │ ├── iereadonly.html │ │ │ ├── iereadonly.md │ │ │ ├── insertion.html │ │ │ ├── insertion.md │ │ │ ├── optimization.html │ │ │ ├── optimization.md │ │ │ ├── optimizationlist.html │ │ │ ├── optimizationlist.md │ │ │ ├── plaintextpasteinfirefox.html │ │ │ ├── plaintextpasteinfirefox.md │ │ │ ├── readonly.html │ │ │ ├── readonly.md │ │ │ ├── removewidget.html │ │ │ ├── removewidget.md │ │ │ ├── scrollintoview.html │ │ │ ├── scrollintoview.md │ │ │ ├── selectionafterfocusing.html │ │ │ ├── selectionafterfocusing.md │ │ │ ├── tableselection.html │ │ │ ├── tableselection.md │ │ │ ├── tripleclick.html │ │ │ ├── tripleclick.md │ │ │ ├── unlockerror.html │ │ │ └── unlockerror.md │ │ ├── optimization.js │ │ ├── selection.html │ │ ├── selection.js │ │ ├── tableselection.html │ │ └── tableselection.js │ ├── skin │ │ ├── _assets │ │ │ └── skins │ │ │ │ └── skinnochameleon │ │ │ │ ├── editor.css │ │ │ │ └── skin.js │ │ ├── manual │ │ │ ├── _assets │ │ │ │ └── styles.css │ │ │ ├── kamaarrow.html │ │ │ ├── kamaarrow.md │ │ │ ├── kamamultiselect.html │ │ │ ├── kamamultiselect.md │ │ │ ├── moonoarrow.html │ │ │ ├── moonoarrow.md │ │ │ ├── moonolisaarrow.html │ │ │ ├── moonolisaarrow.md │ │ │ ├── moonolisamultiselect.html │ │ │ ├── moonolisamultiselect.md │ │ │ ├── moonolisaseparator.html │ │ │ ├── moonolisaseparator.md │ │ │ ├── moonomultiselect.html │ │ │ ├── moonomultiselect.md │ │ │ ├── reset.html │ │ │ ├── reset.md │ │ │ ├── resetkama.html │ │ │ └── resetkama.md │ │ ├── skin.js │ │ └── skinnochameleon.js │ ├── style │ │ ├── _helpers │ │ │ └── createInlineStyleTestCase.js │ │ ├── applyremove.html │ │ ├── applyremove.js │ │ ├── checkapplicable.js │ │ ├── checkelementmatch.html │ │ ├── checkelementmatch.js │ │ ├── checkelementremovable.html │ │ ├── checkelementremovable.js │ │ ├── customstylehandler.js │ │ ├── editor.js │ │ └── manual │ │ │ ├── embedstyles.html │ │ │ ├── embedstyles.md │ │ │ ├── iebackground.html │ │ │ ├── iebackground.md │ │ │ ├── widgetstyle.html │ │ │ └── widgetstyle.md │ ├── template.js │ ├── tools.js │ └── tools │ │ ├── _assets │ │ ├── amdtest.html │ │ └── require.js │ │ ├── absoluterectposition.js │ │ ├── amd.js │ │ ├── array.js │ │ ├── color │ │ ├── _helpers │ │ │ └── colorTools.js │ │ ├── channels.js │ │ ├── color.js │ │ └── conversion.js │ │ ├── getstyledspans.js │ │ ├── isvalidcolorformat.js │ │ ├── keystroke.js │ │ ├── manual │ │ ├── amd.html │ │ ├── amd.md │ │ ├── converttopx.html │ │ ├── converttopx.md │ │ ├── escapecss.html │ │ ├── escapecss.md │ │ ├── eventbuffer.html │ │ ├── eventbuffer.md │ │ ├── functionkeylabel.html │ │ ├── functionkeylabel.md │ │ ├── getmousebutton.html │ │ ├── getmousebutton.md │ │ ├── throttlebuffer.html │ │ └── throttlebuffer.md │ │ ├── object.js │ │ ├── promise.js │ │ ├── style.js │ │ └── trim.js ├── plugins │ ├── a11yhelp │ │ ├── editorhelp.js │ │ └── manual │ │ │ ├── dialogfocusinfo.html │ │ │ ├── dialogfocusinfo.md │ │ │ ├── focusinfo.html │ │ │ ├── focusinfo.md │ │ │ ├── keystrokes.html │ │ │ ├── keystrokes.md │ │ │ ├── plaintext.html │ │ │ ├── plaintext.md │ │ │ ├── screenreader.html │ │ │ └── screenreader.md │ ├── ajax │ │ ├── ajax.js │ │ └── manual │ │ │ ├── optionalcallback.html │ │ │ └── optionalcallback.md │ ├── autocomplete │ │ ├── a11y.js │ │ ├── autocomplete.html │ │ ├── autocomplete.js │ │ ├── focus.js │ │ ├── integration │ │ │ ├── emoji │ │ │ │ └── manual │ │ │ │ │ ├── emoji.html │ │ │ │ │ └── emoji.md │ │ │ └── mentions │ │ │ │ └── manual │ │ │ │ ├── mentions.html │ │ │ │ └── mentions.md │ │ ├── manual │ │ │ ├── __template__.html │ │ │ ├── _helpers │ │ │ │ └── utils.js │ │ │ ├── a11ydivarea.html │ │ │ ├── a11ydivarea.md │ │ │ ├── callbackcleaning.html │ │ │ ├── callbackcleaning.md │ │ │ ├── completingkeycodes.md │ │ │ ├── existingspace.html │ │ │ ├── existingspace.md │ │ │ ├── followingspace.html │ │ │ ├── followingspace.md │ │ │ ├── holdmousebutton.html │ │ │ ├── holdmousebutton.md │ │ │ ├── init.html │ │ │ ├── init.md │ │ │ ├── itemslimit.html │ │ │ ├── itemslimit.md │ │ │ ├── mouseover.html │ │ │ ├── mouseover.md │ │ │ ├── navigation.html │ │ │ ├── navigation.md │ │ │ ├── optionselection.md │ │ │ ├── outputtemplate.html │ │ │ ├── outputtemplate.md │ │ │ ├── outputtemplatespace.html │ │ │ ├── outputtemplatespace.md │ │ │ ├── skins │ │ │ │ ├── kama.html │ │ │ │ ├── kama.md │ │ │ │ ├── moono.html │ │ │ │ └── moono.md │ │ │ ├── sourcemode.html │ │ │ ├── sourcemode.md │ │ │ ├── throttle.html │ │ │ ├── throttle.md │ │ │ ├── viewposition.html │ │ │ ├── viewposition.md │ │ │ ├── viewstart.html │ │ │ ├── viewstart.md │ │ │ ├── viewtemplate.html │ │ │ ├── viewtemplate.md │ │ │ ├── windowborders.html │ │ │ ├── windowborders.md │ │ │ ├── windowbordertop.html │ │ │ └── windowbordertop.md │ │ ├── model.js │ │ ├── view.js │ │ └── viewposition.js │ ├── autoembed │ │ ├── autoembed.js │ │ ├── autoembednotifications.js │ │ ├── getwidgetdefinition.js │ │ └── manual │ │ │ ├── autoembed.html │ │ │ ├── autoembed.md │ │ │ ├── bottomtoolbar.html │ │ │ ├── bottomtoolbar.md │ │ │ ├── notifications.html │ │ │ ├── notifications.md │ │ │ ├── spontaneousreembed.html │ │ │ ├── spontaneousreembed.md │ │ │ ├── undoautoembed.html │ │ │ └── undoautoembed.md │ ├── autogrow │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── autogrow.js │ │ ├── autogrowborderless.js │ │ └── manual │ │ │ ├── 14413.html │ │ │ ├── 14413.md │ │ │ ├── 14620.html │ │ │ ├── 14620.md │ │ │ ├── autogrowboxsize.html │ │ │ ├── autogrowboxsize.md │ │ │ ├── autogrowwidth.html │ │ │ └── autogrowwidth.md │ ├── autolink │ │ ├── autolink.js │ │ ├── manual │ │ │ ├── autolink.html │ │ │ ├── autolink.md │ │ │ ├── continoustyping.html │ │ │ ├── continoustyping.md │ │ │ ├── customregex.html │ │ │ ├── customregex.md │ │ │ ├── encoding.html │ │ │ ├── encoding.md │ │ │ ├── fillingcharsequence.html │ │ │ ├── fillingcharsequence.md │ │ │ ├── link.html │ │ │ ├── link.md │ │ │ ├── mail.html │ │ │ ├── mail.md │ │ │ ├── sourcemode.html │ │ │ ├── sourcemode.md │ │ │ ├── typing.html │ │ │ └── typing.md │ │ └── typing.js │ ├── balloonpanel │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── balloonpanel.js │ │ ├── cssloading.js │ │ ├── manual │ │ │ ├── balloonpanel.html │ │ │ ├── balloonpanel.md │ │ │ ├── focus.html │ │ │ ├── focus.md │ │ │ ├── kama.html │ │ │ ├── kama.md │ │ │ ├── moono.html │ │ │ ├── moono.md │ │ │ ├── panel.html │ │ │ ├── panel.md │ │ │ ├── positioning.html │ │ │ ├── positioning.md │ │ │ ├── selectionpositioning.html │ │ │ └── selectionpositioning.md │ │ ├── positioning.html │ │ ├── positioning.inline.html │ │ ├── positioning.inline.js │ │ ├── positioning.js │ │ └── positioningnonstatic.js │ ├── balloontoolbar │ │ ├── _helpers │ │ │ └── default.js │ │ ├── buttons.js │ │ ├── context.js │ │ ├── context │ │ │ ├── _helpers │ │ │ │ └── tools.js │ │ │ ├── cssselector.js │ │ │ ├── focusablebuttons.js │ │ │ ├── integration.html │ │ │ ├── integration.js │ │ │ ├── manager.js │ │ │ ├── manual │ │ │ │ ├── complex.html │ │ │ │ ├── complex.md │ │ │ │ ├── context.html │ │ │ │ ├── context.md │ │ │ │ ├── focusablebuttons.html │ │ │ │ ├── focusablebuttons.md │ │ │ │ ├── imgselect.html │ │ │ │ ├── imgselect.md │ │ │ │ ├── toolbar.html │ │ │ │ ├── toolbar.md │ │ │ │ ├── widget.html │ │ │ │ ├── widget.md │ │ │ │ ├── widgetdnd.html │ │ │ │ └── widgetdnd.md │ │ │ ├── priorities.html │ │ │ ├── priorities.js │ │ │ ├── refresh.js │ │ │ ├── widget.html │ │ │ ├── widget.js │ │ │ ├── widgetdnd.html │ │ │ └── widgetdnd.js │ │ ├── contextapi.js │ │ ├── cssdefault.js │ │ ├── cssloading.js │ │ ├── cssskin.js │ │ ├── destroy.js │ │ ├── loading.js │ │ ├── manual │ │ │ ├── balloontoolbar.html │ │ │ ├── balloontoolbar.md │ │ │ ├── contextapi.html │ │ │ ├── contextapi.md │ │ │ ├── destroy.html │ │ │ ├── destroy.md │ │ │ ├── divareascroll.html │ │ │ ├── divareascroll.md │ │ │ ├── drag.html │ │ │ ├── drag.md │ │ │ ├── fallbackstyles.html │ │ │ ├── fallbackstyles.md │ │ │ ├── focus.html │ │ │ ├── focus.md │ │ │ ├── kama.html │ │ │ ├── kama.md │ │ │ ├── moono-lisa.html │ │ │ ├── moono-lisa.md │ │ │ ├── moono.html │ │ │ ├── moono.md │ │ │ ├── moonolisaflickering.html │ │ │ ├── moonolisaflickering.md │ │ │ ├── positioning.html │ │ │ ├── positioning.md │ │ │ ├── refreshposition.html │ │ │ ├── refreshposition.md │ │ │ ├── reposition.html │ │ │ ├── reposition.md │ │ │ ├── skinpath.html │ │ │ ├── skinpath.md │ │ │ ├── windowresize.html │ │ │ └── windowresize.md │ │ ├── positioning.html │ │ ├── positioning.js │ │ └── view.js │ ├── basicstyles │ │ ├── aria.js │ │ ├── basicstyles.html │ │ ├── basicstyles.js │ │ └── manual │ │ │ ├── htmlcomments.html │ │ │ ├── htmlcomments.md │ │ │ ├── toggleexistingsubsupscript.html │ │ │ ├── toggleexistingsubsupscript.md │ │ │ ├── togglesubsupscript.html │ │ │ └── togglesubsupscript.md │ ├── bbcode │ │ ├── bbcode.js │ │ └── manual │ │ │ ├── justify.html │ │ │ ├── justify.md │ │ │ ├── strikethrough.html │ │ │ └── strikethrough.md │ ├── bidi │ │ ├── _assets │ │ │ └── dir_changed_inner.html │ │ ├── aria.js │ │ ├── bidi.html │ │ ├── bidi.js │ │ ├── dir_changed_event.html │ │ ├── dir_changed_event.js │ │ └── manual │ │ │ ├── usecomputedstate.html │ │ │ └── usecomputedstate.md │ ├── blockquote │ │ ├── aria.js │ │ └── blockquote.js │ ├── button │ │ ├── _helpers │ │ │ └── buttontools.js │ │ ├── aria.js │ │ ├── button.js │ │ ├── buttonicon.js │ │ └── manual │ │ │ ├── ariaexpanded.html │ │ │ ├── ariaexpanded.md │ │ │ ├── buttonicon.html │ │ │ ├── buttonicon.md │ │ │ ├── label.html │ │ │ ├── label.md │ │ │ ├── labelhc.html │ │ │ ├── labelhc.md │ │ │ ├── menubuttonscreenreader.html │ │ │ ├── menubuttonscreenreader.md │ │ │ ├── rightclick.html │ │ │ ├── rightclick.md │ │ │ ├── togglebutton.html │ │ │ ├── togglebutton.md │ │ │ ├── togglebuttons.html │ │ │ ├── togglebuttons.md │ │ │ ├── togglebuttonscreenreader.html │ │ │ └── togglebuttonscreenreader.md │ ├── clipboard │ │ ├── _docs │ │ │ └── plaintext.txt │ │ ├── _helpers │ │ │ └── pasting.js │ │ ├── clipboard.js │ │ ├── clipboardimagedisabled.js │ │ ├── datatransfer.js │ │ ├── drop.html │ │ ├── drop.js │ │ ├── dropimage.js │ │ ├── fallbackdatatransfer.html │ │ ├── fallbackdatatransfer.js │ │ ├── forcepasteasplaintext.js │ │ ├── inline.js │ │ ├── isdroprangeaffectedbydragrange.js │ │ ├── manual │ │ │ ├── 13883.html │ │ │ ├── 13883.md │ │ │ ├── _assets │ │ │ │ ├── largeImage.jpg │ │ │ │ ├── pasteimagehtml.pptx │ │ │ │ └── pasteimagehtml.xlsx │ │ │ ├── buttons.html │ │ │ ├── buttons.md │ │ │ ├── customtypes.html │ │ │ ├── customtypes.md │ │ │ ├── customtypesasync.html │ │ │ ├── customtypesasync.md │ │ │ ├── datatransferfallback.html │ │ │ ├── datatransferfallback.md │ │ │ ├── dndfocusfirefox.html │ │ │ ├── dndfocusfirefox.md │ │ │ ├── dontcopyemptyselection.html │ │ │ ├── dontcopyemptyselection.md │ │ │ ├── draganddrop.html │ │ │ ├── draganddrop.md │ │ │ ├── draganddropdata.html │ │ │ ├── draganddropdata.md │ │ │ ├── draganddropfilenotification.html │ │ │ ├── draganddropfilenotification.md │ │ │ ├── draganddropimage.html │ │ │ ├── draganddropimage.md │ │ │ ├── draganddropsameposition.html │ │ │ ├── draganddropsameposition.md │ │ │ ├── dropimagedisabled.html │ │ │ ├── dropimagedisabled.md │ │ │ ├── dropnotificationdisablehandleimages.html │ │ │ ├── dropnotificationdisablehandleimages.md │ │ │ ├── droponmargin.html │ │ │ ├── droponmargin.md │ │ │ ├── edgepasteimage.html │ │ │ ├── edgepasteimage.md │ │ │ ├── forcepasteasplaintext.html │ │ │ ├── forcepasteasplaintext.md │ │ │ ├── isfiletransfer.html │ │ │ ├── isfiletransfer.md │ │ │ ├── missingbutton.html │ │ │ ├── missingbutton.md │ │ │ ├── nonexternalforceasplaintext.html │ │ │ ├── nonexternalforceasplaintext.md │ │ │ ├── partialtable.html │ │ │ ├── partialtable.md │ │ │ ├── paste.html │ │ │ ├── paste.md │ │ │ ├── pastecommands.html │ │ │ ├── pastecommands.md │ │ │ ├── pastedialogmenumobile.html │ │ │ ├── pastedialogmenumobile.md │ │ │ ├── pastedialogmobile.html │ │ │ ├── pastedialogmobile.md │ │ │ ├── pastedialogwordbreak.html │ │ │ ├── pastedialogwordbreak.md │ │ │ ├── pastefilenotification.html │ │ │ ├── pastefilenotification.md │ │ │ ├── pasteideographicspace.html │ │ │ ├── pasteideographicspace.md │ │ │ ├── pasteimage.html │ │ │ ├── pasteimage.md │ │ │ ├── pasteimagedisable.html │ │ │ ├── pasteimagedisable.md │ │ │ ├── pasteimagehtml.html │ │ │ ├── pasteimagehtml.md │ │ │ ├── pasteimageperformance.html │ │ │ ├── pasteimageperformance.md │ │ │ ├── pastenotification.html │ │ │ ├── pastenotification.md │ │ │ ├── pastenotificationdisablehandleimages.html │ │ │ ├── pastenotificationdisablehandleimages.md │ │ │ ├── pastepartiallist.html │ │ │ ├── pastepartiallist.md │ │ │ ├── preventdrop.html │ │ │ ├── preventdrop.md │ │ │ ├── readonlycut.html │ │ │ ├── readonlycut.md │ │ │ ├── readonlystate.html │ │ │ ├── readonlystate.md │ │ │ ├── wholetable.html │ │ │ └── wholetable.md │ │ ├── mobilefix.js │ │ ├── mobilefixcontextmenu.js │ │ ├── notifications.js │ │ ├── paste.js │ │ ├── pastecommands.js │ │ ├── pastedialog.js │ │ ├── pastefilter.js │ │ ├── pasteimage.js │ │ └── readonly.js │ ├── cloudservices │ │ ├── cloudservices.js │ │ └── manual │ │ │ ├── errors.html │ │ │ └── errors.md │ ├── codesnippet │ │ ├── downcast.html │ │ ├── downcast.js │ │ ├── editing.html │ │ ├── editing.js │ │ ├── highlighter.html │ │ ├── highlighter.js │ │ ├── undo.html │ │ ├── undo.js │ │ ├── upcast.html │ │ └── upcast.js │ ├── codesnippetgeshi │ │ └── codesnippetgeshi.js │ ├── colorbutton │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── ariaattributes.js │ │ ├── colorbutton.html │ │ ├── colorbutton.js │ │ ├── colorcommand.js │ │ ├── colorcommandnoui.js │ │ ├── config.js │ │ ├── contentcolors.js │ │ ├── customcolors.js │ │ ├── customcolorsasync.js │ │ ├── highlightedcolor.js │ │ ├── manual │ │ │ ├── _assets │ │ │ │ └── customstyle.css │ │ │ ├── automaticcolor.html │ │ │ ├── automaticcolor.md │ │ │ ├── colorcommand.html │ │ │ ├── colorcommand.md │ │ │ ├── colorcommandwithwidget.html │ │ │ ├── colorcommandwithwidget.md │ │ │ ├── colorhistory │ │ │ │ ├── colororder.html │ │ │ │ ├── colororder.md │ │ │ │ ├── disablecontentcolors.html │ │ │ │ ├── disablecontentcolors.md │ │ │ │ ├── keyboarda11y.html │ │ │ │ ├── keyboarda11y.md │ │ │ │ ├── panelreopen.html │ │ │ │ ├── panelreopen.md │ │ │ │ ├── saveinhistory.html │ │ │ │ ├── saveinhistory.md │ │ │ │ ├── tooltips.html │ │ │ │ ├── tooltips.md │ │ │ │ ├── toomanycolors.html │ │ │ │ ├── toomanycolors.md │ │ │ │ ├── tworows.html │ │ │ │ ├── tworows.md │ │ │ │ ├── zerorows.html │ │ │ │ └── zerorows.md │ │ │ ├── colorsperrow.html │ │ │ ├── colorsperrow.md │ │ │ ├── customclassbackground.html │ │ │ ├── customclassbackground.md │ │ │ ├── customclasstext.html │ │ │ ├── customclasstext.md │ │ │ ├── customcolors.html │ │ │ ├── customcolors.md │ │ │ ├── customlabel.html │ │ │ ├── customlabel.md │ │ │ ├── custompanelrender.html │ │ │ ├── custompanelrender.md │ │ │ ├── customstyle.html │ │ │ ├── customstyle.md │ │ │ ├── dragging.html │ │ │ ├── dragging.md │ │ │ ├── enableautomatic.html │ │ │ ├── enableautomatic.md │ │ │ ├── highlightedcolor.html │ │ │ ├── highlightedcolor.md │ │ │ ├── htmlcomments.html │ │ │ ├── htmlcomments.md │ │ │ ├── select.html │ │ │ ├── select.md │ │ │ ├── stylefromcolordialog.html │ │ │ └── stylefromcolordialog.md │ │ └── select.js │ ├── colordialog │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── colordialog.js │ │ └── manual │ │ │ ├── addhash.html │ │ │ ├── addhash.md │ │ │ ├── colorconversion.html │ │ │ ├── colorconversion.md │ │ │ ├── customfocusindication.html │ │ │ ├── customfocusindication.md │ │ │ ├── showcurrentcolor.html │ │ │ └── showcurrentcolor.md │ ├── contextmenu │ │ ├── _assets │ │ │ └── custom.css │ │ ├── contextmenu.html │ │ ├── contextmenu.js │ │ ├── integration.js │ │ ├── keystroke.js │ │ └── manual │ │ │ ├── contentscss.html │ │ │ ├── contentscss.md │ │ │ ├── disabled.html │ │ │ ├── disabled.md │ │ │ ├── keystroke.html │ │ │ ├── keystroke.md │ │ │ ├── readonly.html │ │ │ └── readonly.md │ ├── copyformatting │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── applyformat.js │ │ ├── applyformatcontext.js │ │ ├── applyformatfiltering.js │ │ ├── aria.js │ │ ├── copyformatting.html │ │ ├── copyformatting.js │ │ ├── extractstyles.js │ │ ├── getselectedwordoffset.js │ │ ├── keystrokes.js │ │ ├── manual │ │ │ ├── allowedcontexts.html │ │ │ ├── allowedcontexts.md │ │ │ ├── copyformatting.html │ │ │ ├── copyformatting.md │ │ │ ├── customkeystroke.html │ │ │ ├── customkeystroke.md │ │ │ ├── disabledcursor.html │ │ │ ├── disabledcursor.md │ │ │ ├── divareafocus.html │ │ │ ├── divareafocus.md │ │ │ ├── edgefocus.html │ │ │ ├── edgefocus.md │ │ │ ├── focus.html │ │ │ ├── focus.md │ │ │ ├── getwordbetweenelements.html │ │ │ ├── getwordbetweenelements.md │ │ │ ├── getwordbr.html │ │ │ ├── getwordbr.md │ │ │ ├── getwordcomment.html │ │ │ ├── getwordcomment.md │ │ │ ├── iebackground.html │ │ │ ├── iebackground.md │ │ │ ├── keystroke.html │ │ │ ├── keystroke.md │ │ │ ├── links.html │ │ │ ├── links.md │ │ │ ├── lists.html │ │ │ ├── lists.md │ │ │ ├── lists │ │ │ │ ├── listtype.html │ │ │ │ ├── listtype.md │ │ │ │ ├── listtypenested.html │ │ │ │ ├── listtypenested.md │ │ │ │ ├── listtypestyles.html │ │ │ │ ├── listtypestyles.md │ │ │ │ ├── removenestedstyles.html │ │ │ │ ├── removenestedstyles.md │ │ │ │ ├── removestylesfromsource.html │ │ │ │ ├── removestylesfromsource.md │ │ │ │ ├── startattribute.html │ │ │ │ ├── startattribute.md │ │ │ │ ├── stylesfromouter.html │ │ │ │ └── stylesfromouter.md │ │ │ ├── mousebutton.html │ │ │ ├── mousebutton.md │ │ │ ├── nestededitablefocus.html │ │ │ ├── nestededitablefocus.md │ │ │ ├── notoolbarbutton.html │ │ │ ├── notoolbarbutton.md │ │ │ ├── prematurepaste.html │ │ │ ├── prematurepaste.md │ │ │ ├── safaricolor.html │ │ │ ├── safaricolor.md │ │ │ ├── selectionfromrighttoleft.html │ │ │ ├── selectionfromrighttoleft.md │ │ │ ├── skippedelements.html │ │ │ ├── skippedelements.md │ │ │ ├── spaceattheend.html │ │ │ ├── spaceattheend.md │ │ │ ├── sticky.html │ │ │ ├── sticky.md │ │ │ ├── stickyinline.html │ │ │ ├── stickyinline.md │ │ │ ├── tableresizecursor.html │ │ │ ├── tableresizecursor.md │ │ │ ├── tables.html │ │ │ ├── tables.md │ │ │ ├── tablesapplyingstyle.html │ │ │ ├── tablesapplyingstyle.md │ │ │ ├── undointegration.html │ │ │ └── undointegration.md │ │ └── undointegration.js │ ├── dialog │ │ ├── _assets │ │ │ └── testdialog.js │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── beforeunload.js │ │ ├── confirm.js │ │ ├── focus.js │ │ ├── functions.js │ │ ├── manual │ │ │ ├── _helpers │ │ │ │ ├── style.css │ │ │ │ └── tools.js │ │ │ ├── ariaselected.html │ │ │ ├── ariaselected.md │ │ │ ├── focus.html │ │ │ ├── focus.md │ │ │ ├── focusdialogtabhckama.html │ │ │ ├── focusdialogtabhckama.md │ │ │ ├── focusdialogtabhcmoono-lisa.html │ │ │ ├── focusdialogtabhcmoono-lisa.md │ │ │ ├── focusdialogtabhcmoono.html │ │ │ ├── focusdialogtabhcmoono.md │ │ │ ├── focushcmode.html │ │ │ ├── focushcmode.md │ │ │ ├── hidingcover.html │ │ │ ├── hidingcover.md │ │ │ ├── inputfocus.html │ │ │ ├── inputfocus.md │ │ │ ├── inputfocusmobile.html │ │ │ ├── inputfocusmobile.md │ │ │ ├── multipleradiogroup.html │ │ │ ├── multipleradiogroup.md │ │ │ ├── multipleradiogroupwithtab.html │ │ │ ├── multipleradiogroupwithtab.md │ │ │ ├── opennonfirsttabasdefault.html │ │ │ ├── opennonfirsttabasdefault.md │ │ │ ├── parentdialogzindex.html │ │ │ ├── parentdialogzindex.md │ │ │ ├── radiogroupfocus.html │ │ │ ├── radiogroupfocus.md │ │ │ ├── setstatenook.html │ │ │ ├── setstatenook.md │ │ │ ├── skins │ │ │ │ ├── kama.html │ │ │ │ ├── kama.md │ │ │ │ ├── moono.html │ │ │ │ ├── moono.md │ │ │ │ ├── moonolisa.html │ │ │ │ └── moonolisa.md │ │ │ ├── startupfocustab.html │ │ │ ├── startupfocustab.md │ │ │ ├── state.html │ │ │ ├── state.md │ │ │ ├── tabsfocus.html │ │ │ └── tabsfocus.md │ │ ├── plugin.js │ │ ├── positioning.js │ │ ├── validatorinlinestyle.js │ │ ├── validatornotempty.js │ │ └── validators.js │ ├── dialogadvtab │ │ ├── dialog.js │ │ └── manual │ │ │ ├── multiplelinks.html │ │ │ └── multiplelinks.md │ ├── dialogui │ │ ├── api.js │ │ ├── dirmarker.js │ │ ├── elements.js │ │ ├── manual │ │ │ ├── inputdirsave.html │ │ │ ├── inputdirsave.md │ │ │ ├── inputdirtoggle.html │ │ │ ├── inputdirtoggle.md │ │ │ └── required │ │ │ │ ├── __template__.html │ │ │ │ ├── required.md │ │ │ │ ├── requiredkama.md │ │ │ │ └── requiredmoono.md │ │ └── required.js │ ├── div │ │ ├── div.html │ │ ├── div.js │ │ ├── manual │ │ │ ├── editingmode.html │ │ │ ├── editingmode.md │ │ │ ├── wrap2divsindiv.html │ │ │ └── wrap2divsindiv.md │ │ └── noneditable.js │ ├── divarea │ │ └── manual │ │ │ ├── contextmenu.html │ │ │ └── contextmenu.md │ ├── docprops │ │ ├── docprops.js │ │ └── manual │ │ │ ├── editingmode.html │ │ │ └── editingmode.md │ ├── easyimage │ │ ├── _assets │ │ │ ├── big.png │ │ │ └── logo.png │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── balloontoolbar.js │ │ ├── commands.js │ │ ├── config.html │ │ ├── config.js │ │ ├── customstyleicons.js │ │ ├── customstyles.html │ │ ├── customstyles.js │ │ ├── manual │ │ │ ├── _assets │ │ │ │ └── progress.css │ │ │ ├── balloontoolbar │ │ │ │ ├── balloontoolbar.html │ │ │ │ ├── balloontoolbar.md │ │ │ │ ├── caption.html │ │ │ │ └── caption.md │ │ │ ├── browsersupport.html │ │ │ ├── browsersupport.md │ │ │ ├── captionflickering.html │ │ │ ├── captionflickering.md │ │ │ ├── changeevent.html │ │ │ ├── changeevent.md │ │ │ ├── customgroups.html │ │ │ ├── customgroups.md │ │ │ ├── customprogressbar.html │ │ │ ├── customprogressbar.md │ │ │ ├── customstyleicons.html │ │ │ ├── customstyleicons.md │ │ │ ├── customstyles.html │ │ │ ├── customstyles.md │ │ │ ├── customtoolbar.html │ │ │ ├── customtoolbar.md │ │ │ ├── datauriimages.html │ │ │ ├── datauriimages.md │ │ │ ├── dndimagetype.html │ │ │ ├── dndimagetype.md │ │ │ ├── easyimage.html │ │ │ ├── easyimage.md │ │ │ ├── editingmode.html │ │ │ ├── editingmode.md │ │ │ ├── figuresnoclass.html │ │ │ ├── figuresnoclass.md │ │ │ ├── imageoutline.html │ │ │ ├── imageoutline.md │ │ │ ├── imagestretch.html │ │ │ ├── imagestretch.md │ │ │ ├── pastefromword.html │ │ │ ├── pastefromword.md │ │ │ ├── pasteimagetype.html │ │ │ ├── pasteimagetype.md │ │ │ ├── progressbar.html │ │ │ ├── progressbar.md │ │ │ ├── removeafterpaste.html │ │ │ ├── removeafterpaste.md │ │ │ ├── safarizerodimensions.html │ │ │ ├── safarizerodimensions.md │ │ │ ├── scrollbarchromebug.html │ │ │ ├── scrollbarchromebug.md │ │ │ ├── sideimagebig.html │ │ │ ├── sideimagebig.md │ │ │ ├── sideimagesmall.html │ │ │ ├── sideimagesmall.md │ │ │ ├── styles.html │ │ │ ├── styles.md │ │ │ ├── tableselection.html │ │ │ ├── tableselection.md │ │ │ ├── undo.html │ │ │ ├── undo.md │ │ │ ├── upload.html │ │ │ ├── upload.md │ │ │ ├── uploadbutton.html │ │ │ ├── uploadbutton.md │ │ │ ├── wordintegration.html │ │ │ └── wordintegration.md │ │ ├── pasteintegration.js │ │ ├── tools.js │ │ ├── uploadintegrations.html │ │ ├── uploadintegrations.js │ │ ├── widget.html │ │ └── widget.js │ ├── editorplaceholder │ │ ├── editorplaceholder.html │ │ ├── editorplaceholder.js │ │ └── manual │ │ │ ├── easyimage.html │ │ │ ├── easyimage.md │ │ │ ├── editorplaceholder.html │ │ │ ├── editorplaceholder.md │ │ │ ├── fullpage.html │ │ │ ├── fullpage.md │ │ │ ├── typingperformance.html │ │ │ └── typingperformance.md │ ├── elementspath │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── click.html │ │ ├── click.js │ │ ├── divarea.html │ │ ├── divarea.js │ │ ├── elementspath.html │ │ ├── elementspath.js │ │ └── manual │ │ │ ├── dragging.html │ │ │ ├── dragging.md │ │ │ ├── elementspath.html │ │ │ ├── elementspath.md │ │ │ ├── focus.html │ │ │ └── focus.md │ ├── embed │ │ ├── iframefocus.js │ │ ├── integration.html │ │ ├── integration.js │ │ ├── manual │ │ │ ├── dnd.html │ │ │ ├── dnd.md │ │ │ ├── embed.html │ │ │ ├── embed.md │ │ │ ├── embedprovider.html │ │ │ ├── embedprovider.md │ │ │ ├── iframefocus.html │ │ │ └── iframefocus.md │ │ └── provider.js │ ├── embedbase │ │ ├── _assets │ │ │ ├── twitter1.js │ │ │ └── void.js │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── definition.js │ │ ├── dialog.js │ │ ├── jsonp.js │ │ ├── notifications.js │ │ ├── staticapi.js │ │ └── undo.js │ ├── embedsemantic │ │ ├── integration.html │ │ ├── integration.js │ │ └── manual │ │ │ ├── embedsemantic.html │ │ │ └── embedsemantic.md │ ├── emoji │ │ ├── _assets │ │ │ ├── emoji.json │ │ │ └── emojialt.json │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── basic.html │ │ ├── basic.js │ │ ├── customemojilist.js │ │ ├── dropdown.js │ │ ├── manual │ │ │ ├── caseinsensitive.html │ │ │ ├── caseinsensitive.md │ │ │ ├── cors.html │ │ │ ├── cors.md │ │ │ ├── customemojilist.html │ │ │ ├── customemojilist.md │ │ │ ├── dropdown │ │ │ │ ├── __template__.html │ │ │ │ ├── dropdownfiltering.md │ │ │ │ ├── dropdownfocus.md │ │ │ │ ├── dropdowninputoutline.html │ │ │ │ ├── dropdowninputoutline.md │ │ │ │ ├── dropdowninsert.md │ │ │ │ ├── dropdownnavgationandstatus.md │ │ │ │ ├── outlinestyle.html │ │ │ │ ├── outlinestyle.md │ │ │ │ ├── pointercursorinnavigation.html │ │ │ │ ├── pointercursorinnavigation.md │ │ │ │ ├── scrollpagebug.html │ │ │ │ ├── scrollpagebug.md │ │ │ │ ├── statusbar.md │ │ │ │ ├── statusbaricontopmargin.html │ │ │ │ └── statusbaricontopmargin.md │ │ │ ├── editablenullerror.html │ │ │ ├── editablenullerror.md │ │ │ ├── emoji.html │ │ │ ├── emoji.md │ │ │ ├── emojimatchlabel.html │ │ │ ├── emojimatchlabel.md │ │ │ ├── followingspace.html │ │ │ ├── followingspace.md │ │ │ ├── font.html │ │ │ ├── font.md │ │ │ ├── minchars.html │ │ │ ├── minchars.md │ │ │ ├── repeated.html │ │ │ ├── repeated.md │ │ │ ├── sortingorder.html │ │ │ ├── sortingorder.md │ │ │ ├── spacerequired.html │ │ │ ├── spacerequired.md │ │ │ ├── twoeditors.html │ │ │ └── twoeditors.md │ │ └── notoolbar.js │ ├── enterkey │ │ ├── blockless.html │ │ ├── blockless.js │ │ ├── blockquote.js │ │ ├── brmode.js │ │ ├── enterkey.js │ │ ├── list.js │ │ ├── manual │ │ │ ├── blockplaceholder.html │ │ │ ├── blockplaceholder.md │ │ │ ├── divplaceholder.html │ │ │ ├── divplaceholder.md │ │ │ ├── nestedlist.html │ │ │ ├── nestedlist.md │ │ │ ├── noselection.html │ │ │ └── noselection.md │ │ └── table.js │ ├── entities │ │ ├── entities.js │ │ └── manual │ │ │ ├── additional.html │ │ │ ├── additional.md │ │ │ ├── encodeentities.html │ │ │ ├── encodeentities.md │ │ │ ├── entitiesprocessnumericalforce.html │ │ │ └── entitiesprocessnumericalforce.md │ ├── fakeobjects │ │ └── fakeobjects.js │ ├── filebrowser │ │ ├── integration.js │ │ ├── manual │ │ │ ├── uploadckfinder.html │ │ │ ├── uploadckfinder.md │ │ │ ├── uploadxhr.html │ │ │ ├── uploadxhr.md │ │ │ ├── uploadxhrwitherror.html │ │ │ └── uploadxhrwitherror.md │ │ └── uploadbutton.js │ ├── filetools │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── fileloader.js │ │ ├── filetools.js │ │ └── static.js │ ├── find │ │ ├── find.js │ │ └── manual │ │ │ ├── dialogerrorreadonly.html │ │ │ ├── dialogerrorreadonly.md │ │ │ ├── dialogreplaceselectionupdate.html │ │ │ ├── dialogreplaceselectionupdate.md │ │ │ ├── find.html │ │ │ ├── find.md │ │ │ ├── findandreplacedoublespacepattern.html │ │ │ ├── findandreplacedoublespacepattern.md │ │ │ ├── findbykeyboard.html │ │ │ ├── findbykeyboard.md │ │ │ ├── replacebykeyboard.html │ │ │ ├── replacebykeyboard.md │ │ │ ├── replacedoublespace.html │ │ │ ├── replacedoublespace.md │ │ │ ├── replacereadonly.html │ │ │ ├── replacereadonly.md │ │ │ ├── textnodesplit.html │ │ │ └── textnodesplit.md │ ├── flash │ │ ├── error.js │ │ └── manual │ │ │ ├── error.html │ │ │ └── error.md │ ├── floatingspace │ │ └── floatingspace.js │ ├── floatpanel │ │ ├── floatpanel.js │ │ └── manual │ │ │ ├── rendering.html │ │ │ ├── rendering.md │ │ │ ├── resize.html │ │ │ └── resize.md │ ├── font │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── commandandui.js │ │ ├── customfontdefinition.js │ │ ├── font.js │ │ ├── fontcommand.js │ │ └── manual │ │ │ ├── changingfontsize.html │ │ │ ├── changingfontsize.md │ │ │ ├── collapsedandnestedspans.html │ │ │ ├── collapsedandnestedspans.md │ │ │ ├── command │ │ │ ├── __template__.html │ │ │ ├── activefilter.html │ │ │ ├── activefilter.md │ │ │ ├── applystyle.md │ │ │ └── removestyle.md │ │ │ ├── nestingclasses.html │ │ │ ├── nestingclasses.md │ │ │ ├── partialstyles.html │ │ │ ├── partialstyles.md │ │ │ ├── preservefonttag.html │ │ │ ├── preservefonttag.md │ │ │ ├── preservestyle.html │ │ │ ├── preservestyle.md │ │ │ ├── quotedfont.html │ │ │ ├── quotedfont.md │ │ │ ├── reapplystyles.html │ │ │ └── reapplystyles.md │ ├── format │ │ ├── manual │ │ │ ├── preserveformatafterclick.html │ │ │ └── preserveformatafterclick.md │ │ └── plugin.js │ ├── forms │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── button.js │ │ ├── checkbox.js │ │ ├── form.js │ │ ├── hiddenfield.js │ │ ├── imagebutton.js │ │ ├── manual │ │ │ ├── checkboxradiochangestate.html │ │ │ ├── checkboxradiochangestate.md │ │ │ ├── editingmode.html │ │ │ ├── editingmode.md │ │ │ ├── ieradiofix.html │ │ │ ├── ieradiofix.md │ │ │ ├── required.html │ │ │ ├── required.md │ │ │ ├── selectfontstyles.html │ │ │ └── selectfontstyles.md │ │ ├── radio.js │ │ ├── select.js │ │ ├── styles.html │ │ ├── styles.js │ │ ├── textarea.js │ │ └── textfield.js │ ├── horizontalrule │ │ └── horizontalrule.js │ ├── htmlwriter │ │ ├── htmlwriter.js │ │ └── manual │ │ │ ├── dataindentationchars.html │ │ │ ├── dataindentationchars.md │ │ │ ├── forcesimpleampersand.html │ │ │ └── forcesimpleampersand.md │ ├── iframe │ │ ├── iframe.html │ │ ├── iframe.js │ │ └── manual │ │ │ ├── editingmode.html │ │ │ ├── editingmode.md │ │ │ ├── tabindex.html │ │ │ └── tabindex.md │ ├── image │ │ ├── image.html │ │ ├── image.js │ │ ├── init.js │ │ ├── manual │ │ │ ├── easyimage.html │ │ │ ├── easyimage.md │ │ │ ├── easyimageimage2.html │ │ │ ├── easyimageimage2.md │ │ │ ├── editingmode.html │ │ │ ├── editingmode.md │ │ │ ├── emptydimensions.html │ │ │ ├── emptydimensions.md │ │ │ ├── image2.html │ │ │ ├── image2.md │ │ │ ├── keeplinkwhenlinktabdisabled.html │ │ │ ├── keeplinkwhenlinktabdisabled.md │ │ │ ├── lockratio.html │ │ │ ├── lockratio.md │ │ │ ├── wrongvaluedialog.html │ │ │ └── wrongvaluedialog.md │ │ └── nolinktab.js │ ├── image2 │ │ ├── _assets │ │ │ ├── bar.png │ │ │ ├── contents.css │ │ │ └── foo.png │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── acf.html │ │ ├── acf.js │ │ ├── dialoglistener.html │ │ ├── dialoglistener.js │ │ ├── downcast.html │ │ ├── downcast.js │ │ ├── editing.html │ │ ├── editing.js │ │ ├── image2.html │ │ ├── image2.js │ │ ├── init.js │ │ ├── internal.html │ │ ├── internal.js │ │ ├── justify.html │ │ ├── justify.js │ │ ├── link.html │ │ ├── link.js │ │ ├── manual │ │ │ ├── alignsetfromnestedimage.html │ │ │ ├── alignsetfromnestedimage.md │ │ │ ├── altrequiredconifg.html │ │ │ ├── altrequiredconifg.md │ │ │ ├── arialabel.html │ │ │ ├── arialabel.md │ │ │ ├── aspectratio.html │ │ │ ├── aspectratio.md │ │ │ ├── crosscontentselection.html │ │ │ ├── crosscontentselection.md │ │ │ ├── defaultlockratiofalse.html │ │ │ ├── defaultlockratiofalse.md │ │ │ ├── defaultlockratiotrue.html │ │ │ ├── defaultlockratiotrue.md │ │ │ ├── defaultlockratioundefined.html │ │ │ ├── defaultlockratioundefined.md │ │ │ ├── dialogafterresize.html │ │ │ ├── dialogafterresize.md │ │ │ ├── dndwithcaption.html │ │ │ ├── dndwithcaption.md │ │ │ ├── easyimage.html │ │ │ ├── easyimage.md │ │ │ ├── emptydimensions.html │ │ │ ├── emptydimensions.md │ │ │ ├── link.html │ │ │ ├── link.md │ │ │ ├── maxsize.html │ │ │ ├── maxsize.md │ │ │ ├── resizer.html │ │ │ ├── resizer.md │ │ │ ├── resizerwithreadonly.html │ │ │ ├── resizerwithreadonly.md │ │ │ ├── upcast.html │ │ │ ├── upcast.md │ │ │ ├── wrongvaluedialog.html │ │ │ └── wrongvaluedialog.md │ │ ├── relations.html │ │ ├── relations.js │ │ ├── resizehandler.js │ │ ├── resizerwithreadonly.js │ │ ├── size.js │ │ ├── states.html │ │ ├── states.js │ │ ├── styles.html │ │ ├── styles.js │ │ ├── upcast.html │ │ ├── upcast.js │ │ └── validation.js │ ├── imagebase │ │ ├── features │ │ │ ├── _helpers │ │ │ │ └── tools.js │ │ │ ├── api.js │ │ │ ├── caption.html │ │ │ ├── caption.js │ │ │ ├── link.html │ │ │ ├── link.js │ │ │ ├── manual │ │ │ │ ├── caption.html │ │ │ │ ├── caption.md │ │ │ │ ├── captionacfcustomization.html │ │ │ │ ├── captionacfcustomization.md │ │ │ │ ├── captionafterpaste.html │ │ │ │ ├── captionafterpaste.md │ │ │ │ ├── captionblur.html │ │ │ │ ├── captionblur.md │ │ │ │ ├── captiondisabled.html │ │ │ │ ├── captiondisabled.md │ │ │ │ ├── captionemptyplaceholder.html │ │ │ │ ├── captionemptyplaceholder.md │ │ │ │ ├── link.html │ │ │ │ ├── link.md │ │ │ │ ├── linkcontextmenu.html │ │ │ │ ├── linkcontextmenu.md │ │ │ │ ├── upload.html │ │ │ │ ├── upload.md │ │ │ │ ├── uploadsimple.html │ │ │ │ └── uploadsimple.md │ │ │ └── upload.js │ │ ├── imagebase.html │ │ ├── imagebase.js │ │ ├── manual │ │ │ ├── progressbar.html │ │ │ ├── progressbar.md │ │ │ ├── progressbarrtl.html │ │ │ └── progressbarrtl.md │ │ ├── progressbar.html │ │ └── progressbar.js │ ├── indent │ │ ├── edge.js │ │ ├── indent.js │ │ └── manual │ │ │ ├── indentblockdisabled.html │ │ │ ├── indentblockdisabled.md │ │ │ ├── indentblockenabled.html │ │ │ └── indentblockenabled.md │ ├── indentlist │ │ ├── _assets │ │ │ └── styles.css │ │ ├── edge.js │ │ ├── editorinlist.html │ │ ├── editorinlist.js │ │ ├── indentlist.js │ │ ├── manual │ │ │ ├── keepcorrectlisttag.html │ │ │ ├── keepcorrectlisttag.md │ │ │ ├── taberrorininlineeditor.html │ │ │ └── taberrorininlineeditor.md │ │ ├── staticfunctions.js │ │ └── taberror.js │ ├── justify │ │ ├── _assets │ │ │ └── styles.css │ │ ├── aria.js │ │ ├── justify.html │ │ ├── justify.js │ │ └── manual │ │ │ ├── brmode.html │ │ │ ├── brmode.md │ │ │ ├── justifyrespectsacf.html │ │ │ ├── justifyrespectsacf.md │ │ │ ├── justifyrespectsacfbr.html │ │ │ ├── justifyrespectsacfbr.md │ │ │ ├── justifyrespectsacfdisallow.html │ │ │ ├── justifyrespectsacfdisallow.md │ │ │ ├── usecomputedstate.html │ │ │ ├── usecomputedstate.md │ │ │ ├── usecomputedstatedir.html │ │ │ └── usecomputedstatedir.md │ ├── language │ │ ├── language.js │ │ └── manual │ │ │ ├── addmissingdirattribute(rtl).html │ │ │ ├── addmissingdirattribute(rtl).md │ │ │ ├── addmissingdirattribute.html │ │ │ ├── addmissingdirattribute.md │ │ │ ├── recognizelangelements.html │ │ │ ├── recognizelangelements.md │ │ │ ├── removeformatlanguage.html │ │ │ └── removeformatlanguage.md │ ├── lineutils │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── finder.html │ │ ├── finder.js │ │ ├── liner.js │ │ ├── locator.js │ │ └── manual │ │ │ ├── lineutilsrelative.html │ │ │ ├── lineutilsrelative.md │ │ │ ├── lineutilsstatic.html │ │ │ └── lineutilsstatic.md │ ├── link │ │ ├── anchor.js │ │ ├── dialog.html │ │ ├── dialog.js │ │ ├── emailprotectionencode.js │ │ ├── emailprotectionfunctionalcall.js │ │ ├── emailwithatsign.js │ │ ├── entermode.js │ │ ├── link.html │ │ ├── link.js │ │ ├── manual │ │ │ ├── advattributesarekeptwhenadvtabdisabled.html │ │ │ ├── advattributesarekeptwhenadvtabdisabled.md │ │ │ ├── anchordialog.html │ │ │ ├── anchordialog.md │ │ │ ├── anchorediting.html │ │ │ ├── anchorediting.md │ │ │ ├── anchorselection.html │ │ │ ├── anchorselection.md │ │ │ ├── anchorwithspace.html │ │ │ ├── anchorwithspace.md │ │ │ ├── editingmode.html │ │ │ ├── editingmode.md │ │ │ ├── editlinkdisplaytext.html │ │ │ ├── editlinkdisplaytext.md │ │ │ ├── editlinktextmultiline.html │ │ │ ├── editlinktextmultiline.md │ │ │ ├── emailwithatsign.html │ │ │ ├── emailwithatsign.md │ │ │ ├── emailwithquestionmark.html │ │ │ ├── emailwithquestionmark.md │ │ │ ├── forcedownload.html │ │ │ ├── forcedownload.md │ │ │ ├── getselectedlink.html │ │ │ ├── getselectedlink.md │ │ │ ├── keystroke.html │ │ │ ├── keystroke.md │ │ │ ├── parseuppercasedurlparams.html │ │ │ ├── parseuppercasedurlparams.md │ │ │ ├── phone.html │ │ │ ├── phone.md │ │ │ ├── phoneinputkama.html │ │ │ ├── phoneinputkama.md │ │ │ ├── phoneinputmoono.html │ │ │ ├── phoneinputmoono.md │ │ │ ├── phoneinputmoonolisa.html │ │ │ ├── phoneinputmoonolisa.md │ │ │ ├── protectedmaillinkwithoutsubjectandbody.html │ │ │ ├── protectedmaillinkwithoutsubjectandbody.md │ │ │ ├── protocol.html │ │ │ ├── protocol.md │ │ │ ├── twowordslinkwithbackgrounddialog.html │ │ │ ├── twowordslinkwithbackgrounddialog.md │ │ │ ├── unlinkbeforeafterlink.html │ │ │ └── unlinkbeforeafterlink.md │ │ ├── utils.js │ │ └── validator.js │ ├── list │ │ ├── aria.js │ │ ├── backspace.html │ │ ├── backspace.js │ │ ├── backspace_enterbr.html │ │ ├── backspace_enterbr.js │ │ ├── blockconversion.html │ │ ├── blockconversion.js │ │ ├── contentdominvalidated.js │ │ ├── list.html │ │ ├── list.js │ │ ├── list_enterbr.js │ │ ├── manual │ │ │ ├── listconversionerrors.html │ │ │ ├── listconversionerrors.md │ │ │ ├── mergelistitems.html │ │ │ ├── mergelistitems.md │ │ │ ├── sublistreverse.html │ │ │ └── sublistreverse.md │ │ └── noneditable.js │ ├── listblock │ │ ├── listblock.js │ │ └── manual │ │ │ ├── ariaselected.html │ │ │ ├── ariaselected.md │ │ │ ├── dragging.html │ │ │ ├── dragging.md │ │ │ ├── rightclick.html │ │ │ └── rightclick.md │ ├── liststyle │ │ ├── liststyle.js │ │ └── manual │ │ │ ├── editingmode.html │ │ │ └── editingmode.md │ ├── magicline │ │ ├── magicline.html │ │ ├── magicline.js │ │ ├── manual │ │ │ ├── lineattribute.html │ │ │ └── lineattribute.md │ │ ├── memory.js │ │ ├── widgets.html │ │ └── widgets.js │ ├── mathjax │ │ ├── framewrapper.html │ │ ├── framewrapper.js │ │ ├── mathjax-mock.html │ │ ├── mathjax-mock.js │ │ ├── mathjax.html │ │ └── mathjax.js │ ├── maximize │ │ ├── aria.js │ │ ├── manual │ │ │ ├── historyapi.html │ │ │ ├── historyapi.md │ │ │ ├── historyapihash.html │ │ │ ├── historyapihash.md │ │ │ ├── historyapioff.html │ │ │ ├── historyapioff.md │ │ │ ├── togglebutton.html │ │ │ └── togglebutton.md │ │ └── maximize.js │ ├── mentions │ │ ├── manual │ │ │ ├── cache.html │ │ │ ├── cache.md │ │ │ ├── casesensitive.html │ │ │ ├── casesensitive.md │ │ │ ├── diacritic.html │ │ │ ├── diacritic.md │ │ │ ├── mentions.html │ │ │ ├── mentions.md │ │ │ ├── outputTemplate.html │ │ │ ├── outputTemplate.md │ │ │ ├── viewTemplate.html │ │ │ └── viewTemplate.md │ │ └── mentions.js │ ├── menu │ │ ├── items.js │ │ ├── manual │ │ │ ├── drag.html │ │ │ ├── drag.md │ │ │ ├── quotes.html │ │ │ ├── quotes.md │ │ │ ├── rightclick.html │ │ │ └── rightclick.md │ │ └── menu.js │ ├── menubutton │ │ ├── aria.js │ │ └── manual │ │ │ ├── menubuttonscreenreader.html │ │ │ └── menubuttonscreenreader.md │ ├── newpage │ │ └── manual │ │ │ ├── selectionafternewpage.html │ │ │ └── selectionafternewpage.md │ ├── notification │ │ ├── area.js │ │ ├── layout.js │ │ ├── manual │ │ │ ├── _assets │ │ │ │ ├── bodypossitionrelative.html │ │ │ │ └── bodypossitionstatic.html │ │ │ ├── _helpers │ │ │ │ └── manualplayground.js │ │ │ ├── api.html │ │ │ ├── api.md │ │ │ ├── bodypossition.html │ │ │ ├── bodypossition.md │ │ │ ├── classic.html │ │ │ ├── classic.md │ │ │ ├── focus.html │ │ │ ├── focus.md │ │ │ ├── inline.html │ │ │ ├── inline.md │ │ │ ├── inlinenarrow.html │ │ │ ├── inlinenarrow.md │ │ │ ├── linkcontrastkama.html │ │ │ ├── linkcontrastkama.md │ │ │ ├── linkcontrastmoono.html │ │ │ ├── linkcontrastmoono.md │ │ │ ├── linkcontrastmoonolisa.html │ │ │ ├── linkcontrastmoonolisa.md │ │ │ ├── notificationposition.html │ │ │ ├── notificationposition.md │ │ │ ├── notoolbarnotifications.html │ │ │ ├── notoolbarnotifications.md │ │ │ ├── notoolbarnotificationsinline.html │ │ │ ├── notoolbarnotificationsinline.md │ │ │ ├── replacealertwithnotification.html │ │ │ ├── replacealertwithnotification.md │ │ │ ├── toolbarbottom.html │ │ │ └── toolbarbottom.md │ │ ├── notification.js │ │ └── notoolbarlayout.js │ ├── notificationaggregator │ │ ├── aggregator.js │ │ ├── manual │ │ │ ├── classic.html │ │ │ ├── classic.md │ │ │ └── complex │ │ │ │ ├── multitask.html │ │ │ │ ├── multitask.md │ │ │ │ ├── removing.html │ │ │ │ ├── removing.md │ │ │ │ ├── weight.html │ │ │ │ └── weight.md │ │ └── task.js │ ├── pagebreak │ │ ├── manual │ │ │ ├── create.html │ │ │ └── create.md │ │ └── pagebreak.js │ ├── panel │ │ ├── focusonopen.js │ │ ├── manual │ │ │ ├── contextmenua11y.html │ │ │ ├── contextmenua11y.md │ │ │ ├── edgepermissiondenied.html │ │ │ ├── edgepermissiondenied.md │ │ │ ├── focusableinput.html │ │ │ ├── focusableinput.md │ │ │ ├── keydown.html │ │ │ ├── keydown.md │ │ │ ├── toolbara11y.html │ │ │ └── toolbara11y.md │ │ └── panel.js │ ├── panelbutton │ │ ├── aria.js │ │ └── command.js │ ├── pastefromgdocs │ │ ├── detectgdocs.js │ │ ├── generated │ │ │ ├── _fixtures │ │ │ │ ├── Basic │ │ │ │ │ ├── expected.html │ │ │ │ │ └── gdocs │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── expected_edge.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── BasicCKE5 │ │ │ │ │ └── gdocs │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── expected_chrome.html │ │ │ │ │ │ ├── expected_edge.html │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── expected_safari.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── NestedOrderedLists │ │ │ │ │ ├── expected.html │ │ │ │ │ └── gdocs │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── expected_edge.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ └── NestedUnorderedLists │ │ │ │ │ └── gdocs │ │ │ │ │ ├── chrome.html │ │ │ │ │ ├── edge.html │ │ │ │ │ ├── expected_chrome.html │ │ │ │ │ ├── expected_edge.html │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ ├── expected_safari.html │ │ │ │ │ ├── firefox.html │ │ │ │ │ ├── ie11.html │ │ │ │ │ └── safari.html │ │ │ └── basic.js │ │ ├── manual │ │ │ ├── nestedlists.html │ │ │ ├── nestedlists.md │ │ │ ├── pastefromgdocs.html │ │ │ └── pastefromgdocs.md │ │ └── multiplehandlers.js │ ├── pastefromlibreoffice │ │ ├── generated │ │ │ ├── _fixtures │ │ │ │ ├── Basic_styles │ │ │ │ │ ├── basicstyles.odt │ │ │ │ │ ├── expected.html │ │ │ │ │ └── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ ├── Font │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── font.odt │ │ │ │ │ └── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ ├── Font_color │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── fontcolor.odt │ │ │ │ │ └── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ ├── Heading_alignment │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── headingalignment.odt │ │ │ │ │ └── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ ├── Images │ │ │ │ │ ├── Linked_image │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ ├── edge.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── linkedimage.odt │ │ │ │ │ ├── Multi_feature_document │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ ├── edge.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── multifeaturedocument.odt │ │ │ │ │ ├── Simple_image │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ ├── edge.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── simpleimage.odt │ │ │ │ │ └── Transformed │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── edge.rtf │ │ │ │ │ │ ├── expected_edge.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── transformed.odt │ │ │ │ ├── ImagesExtraction │ │ │ │ │ ├── AnimatedGif │ │ │ │ │ │ ├── AnimatedGif.odt │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── libreoffice7 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── DrawnObject │ │ │ │ │ │ ├── DrawnObject.odt │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── libreoffice7 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── DuplicatedImage │ │ │ │ │ │ ├── DuplicatedImage.odt │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── libreoffice7 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── InFooter │ │ │ │ │ │ ├── InFooter.odt │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── libreoffice7 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── InHeader │ │ │ │ │ │ ├── InHeader.odt │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── libreoffice7 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── InHeaderFooter │ │ │ │ │ │ ├── InHeaderFooter.odt │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── libreoffice7 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── InHeaderFooterComplex │ │ │ │ │ │ ├── InHeaderFooterComplex.odt │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── libreoffice7 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── InHeaderFooterCurlyBraces │ │ │ │ │ │ ├── InHeaderFooterCurlyBraces.odt │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── libreoffice7 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── UnsupportedFormats │ │ │ │ │ │ ├── UnsupportedFormats.odt │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── libreoffice7 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ └── WrappedImages │ │ │ │ │ │ ├── WrappedImages.odt │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── libreoffice7 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── firefox.rtf │ │ │ │ ├── Link │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ │ └── link.odt │ │ │ │ ├── Lists │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ │ └── lists.odt │ │ │ │ ├── Mixed_list │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ │ └── mixedlist.odt │ │ │ │ ├── Page_break │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ │ └── pagebreak.odt │ │ │ │ ├── Paragraph_format │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ │ └── paragraphformat.odt │ │ │ │ ├── Simple_table │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ │ └── simpletable.odt │ │ │ │ ├── Simple_text │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ │ └── simpletext.odt │ │ │ │ ├── Table_background │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── expected_edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ │ └── tablebackground.odt │ │ │ │ └── Text_align │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── libreoffice6 │ │ │ │ │ ├── chrome.html │ │ │ │ │ ├── edge.html │ │ │ │ │ └── firefox.html │ │ │ │ │ └── textalign.odt │ │ │ ├── _helpers │ │ │ │ └── config.js │ │ │ ├── generic.js │ │ │ ├── genericwithword.js │ │ │ ├── images.js │ │ │ ├── imagesextraction.js │ │ │ └── imageswithword.js │ │ ├── manual │ │ │ ├── headingalignment.html │ │ │ ├── headingalignment.md │ │ │ ├── imagesduplicated.html │ │ │ ├── imagesduplicated.md │ │ │ ├── imagesinheaderfooter.html │ │ │ ├── imagesinheaderfooter.md │ │ │ ├── imagesunsupported.html │ │ │ ├── imagesunsupported.md │ │ │ ├── main.html │ │ │ ├── main.md │ │ │ ├── tableborders.html │ │ │ └── tableborders.md │ │ └── supportedenvironments.js │ ├── pastefromword │ │ ├── _assets │ │ │ └── customfilter.js │ │ ├── _fixtures │ │ │ └── blob │ │ │ │ ├── ckeditor.gif │ │ │ │ ├── ckeditor.gif.txt │ │ │ │ ├── ckeditor.jpg │ │ │ │ ├── ckeditor.jpg.txt │ │ │ │ ├── ckeditor.png │ │ │ │ └── ckeditor.png.txt │ │ ├── _helpers │ │ │ ├── blob.js │ │ │ ├── easyimage.js │ │ │ └── resetforcefromword.js │ │ ├── bloburl.js │ │ ├── command.js │ │ ├── customfilter.js │ │ ├── datatransfer.js │ │ ├── generated │ │ │ ├── _fixtures │ │ │ │ ├── Bold │ │ │ │ │ ├── Bold.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Colors │ │ │ │ │ ├── Colors.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Config_remove_font_styles │ │ │ │ │ ├── Config_remove_font_styles.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Custom_list_markers │ │ │ │ │ ├── Custom_list_markers.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── expected_safari.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie8.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Enter_BR │ │ │ │ │ ├── Enter_BR.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ └── word2016 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── ie8.html │ │ │ │ ├── Fonts │ │ │ │ │ ├── Fonts.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── expected_safari.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Image │ │ │ │ │ ├── Image.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── expected_safari.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── ImagesExtraction │ │ │ │ │ ├── AnimatedGif │ │ │ │ │ │ ├── AnimatedGif.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word365 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── DrawnObject │ │ │ │ │ │ ├── DrawnObject.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word365 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── DuplicatedImage │ │ │ │ │ │ ├── DuplicatedImage.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word365 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── InFooter │ │ │ │ │ │ ├── InFooter.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word365 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── InHeader │ │ │ │ │ │ ├── InHeader.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word365 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── InHeaderFooter │ │ │ │ │ │ ├── InHeaderFooter.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word365 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── InHeaderFooterComplex │ │ │ │ │ │ ├── InHeaderFooterComplex.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word365 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── InHeaderFooterCurlyBraces │ │ │ │ │ │ ├── InHeaderFooterCurlyBraces.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word365 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── UnsupportedFormats │ │ │ │ │ │ ├── UnsupportedFormats.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word365 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ └── WrappedImages │ │ │ │ │ │ ├── WrappedImages.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word365 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── firefox.rtf │ │ │ │ ├── InlineStyles │ │ │ │ │ ├── InlineStyles.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ └── firefox.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_chrome.html │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ ├── expected_safari.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Italic │ │ │ │ │ ├── Italic.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Keep_margins_in_lists │ │ │ │ │ ├── Keep_margins_in_lists.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ └── word2016 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Keep_zero_margins_in_lists │ │ │ │ │ ├── Keep_zero_margins_in_lists.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ └── word2016 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── expected_safari.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Link │ │ │ │ │ ├── Link.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── List_indentation │ │ │ │ │ ├── List_indentation.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ └── safari.html │ │ │ │ │ └── word2016 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── ie11.html │ │ │ │ ├── List_margins │ │ │ │ │ ├── List_margins.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ └── word2016 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── List_skipped_numbering │ │ │ │ │ ├── List_skipped_numbering.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ └── ie8.html │ │ │ │ ├── Meta_generator │ │ │ │ │ └── Excel │ │ │ │ │ │ ├── Excel.xlsx │ │ │ │ │ │ ├── excel2016 │ │ │ │ │ │ └── datatransfer.html │ │ │ │ │ │ └── expected.html │ │ │ │ ├── Multi_dig_list │ │ │ │ │ ├── Multi_dig_list.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── ie8.html │ │ │ │ ├── No_heuristics │ │ │ │ │ ├── Ordered_list │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ └── expected_edge.html │ │ │ │ │ ├── Ordered_list_multiple │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ └── expected_edge.html │ │ │ │ │ ├── Tickets │ │ │ │ │ │ └── 16745MixedListsAndParagraphs │ │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ └── expected_edge.html │ │ │ │ │ ├── Unordered_list │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ └── expected_edge.html │ │ │ │ │ └── Unordered_list_multiple │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── expected_edge.html │ │ │ │ ├── Object │ │ │ │ │ ├── Object.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ └── datatransfer.html │ │ │ │ ├── Only_paragraphs │ │ │ │ │ ├── Only_paragraphs.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── expected_safari.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Ordered_list │ │ │ │ │ ├── Ordered_list.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie11.html │ │ │ │ │ ├── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ │ └── word2016 │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── expected_edge.html │ │ │ │ ├── Ordered_list_multiple │ │ │ │ │ ├── Ordered_list_multiple.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ │ └── word2016 │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── expected_edge.html │ │ │ │ ├── Ordered_list_multiple_edgy │ │ │ │ │ ├── Ordered_list_multiple_edgy.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── expected_safari.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Ordered_list_symbol_in_text │ │ │ │ │ ├── Ordered_list_symbol_in_text.docx │ │ │ │ │ ├── Word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── Word2016 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie11.html │ │ │ │ │ └── expected.html │ │ │ │ ├── PFW_image │ │ │ │ │ ├── Gruped_adjacent_shapes_and_images │ │ │ │ │ │ ├── Grouped_adjacent_shapes_and_images.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── expected_chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ ├── word2013_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── word2016_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── Image_alternative_text │ │ │ │ │ │ ├── Image_alternative_text.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ └── expected_chrome.html │ │ │ │ │ │ ├── word2013_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── word2016_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── Image_reflection │ │ │ │ │ │ ├── Image_reflection.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ └── expected_chrome.html │ │ │ │ │ │ ├── word2013_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── word2016_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── Image_rotation │ │ │ │ │ │ ├── Image_rotation.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ └── expected_chrome.html │ │ │ │ │ │ ├── word2013_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── word2016_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── Link_image │ │ │ │ │ │ ├── Link_image.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── expected_chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ ├── word2013_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── word2016_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── Online_and_offline_image │ │ │ │ │ │ ├── Online_and_offline_image.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── expected_chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ ├── word2013_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── word2016_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── Shapes_and_online_and_offline_image │ │ │ │ │ │ ├── Shapes_and_online_and_offline_image.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── expected_chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ ├── word2013_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── word2016_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── Simple_offline_image │ │ │ │ │ │ ├── Simple_offline_image.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── expected_chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ ├── word2013_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── word2016_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ └── Wrapped_image │ │ │ │ │ │ ├── Wrapped_image.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ ├── expected_chrome.html │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ ├── word2013_win │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ │ └── word2016_win │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── firefox.rtf │ │ │ │ ├── Page_break │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── office365 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── safari.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ └── ie8.html │ │ │ │ ├── Page_break_simple │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── office365 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── safari.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ └── ie8.html │ │ │ │ ├── Paragraph_indentation │ │ │ │ │ ├── Paragraph_indentation.docx │ │ │ │ │ ├── Word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ └── firefox.html │ │ │ │ │ ├── Word2016 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ │ └── expected.html │ │ │ │ ├── Paragraphs_with_headers │ │ │ │ │ ├── Paragraphs_with_headers.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Shapes │ │ │ │ │ ├── Adjacent_shapes │ │ │ │ │ │ ├── Shape_adjacent_image.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ └── expected_chrome.html │ │ │ │ │ │ └── word2013_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ └── firefox.html │ │ │ │ │ ├── Canvas │ │ │ │ │ │ ├── Canvas.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── firefox.rtf │ │ │ │ │ ├── Nested_groups │ │ │ │ │ │ ├── Shape_Nested_Groups.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ └── expected_chrome.html │ │ │ │ │ │ └── word2013_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ └── firefox.html │ │ │ │ │ ├── Shape_and_image │ │ │ │ │ │ ├── Shape_And_Image.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ │ └── expected_chrome.html │ │ │ │ │ │ └── word2013_win │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ └── firefox.html │ │ │ │ │ └── Single │ │ │ │ │ │ ├── Shape_single_image.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2011_osx │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── chrome.rtf │ │ │ │ │ │ └── expected_chrome.html │ │ │ │ │ │ └── word2013_win │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ └── firefox.html │ │ │ │ ├── Simple_table │ │ │ │ │ ├── Simple_table.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── expected_safari.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Spacing │ │ │ │ │ ├── Spacing.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Styles │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie11.html │ │ │ │ ├── Table_alignment │ │ │ │ │ ├── Table_alignment.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ └── chrome.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── ie8.html │ │ │ │ ├── Table_excel │ │ │ │ │ ├── expected.html │ │ │ │ │ └── office365 │ │ │ │ │ │ ├── datatransfer.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── expected_edge.html │ │ │ │ │ │ ├── expected_ie.html │ │ │ │ │ │ └── ie.html │ │ │ │ ├── Table_text_attributes │ │ │ │ │ ├── Cell_text │ │ │ │ │ │ ├── Cell_text.xlsx │ │ │ │ │ │ ├── excel2013 │ │ │ │ │ │ │ ├── datatransfer.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ │ ├── excel2016 │ │ │ │ │ │ │ ├── datatransfer.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ └── ie11.html │ │ │ │ │ │ └── expected.html │ │ │ │ │ └── Mixed │ │ │ │ │ │ ├── Mixed.xlsx │ │ │ │ │ │ ├── excel2013 │ │ │ │ │ │ ├── datatransfer.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ │ ├── excel2016 │ │ │ │ │ │ ├── datatransfer.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ └── ie11.html │ │ │ │ │ │ └── expected.html │ │ │ │ ├── Table_vertical_alignment │ │ │ │ │ ├── Table_vertical_alignment.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie11.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ └── firefox.html │ │ │ │ ├── Table_word │ │ │ │ │ ├── expected.html │ │ │ │ │ └── office365 │ │ │ │ │ │ ├── datatransfer.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── expected_edge.html │ │ │ │ │ │ ├── expected_ie.html │ │ │ │ │ │ └── ie.html │ │ │ │ ├── Text_alignment │ │ │ │ │ ├── Text_alignment.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Tickets │ │ │ │ │ ├── 6594 │ │ │ │ │ │ ├── 6594.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6595 │ │ │ │ │ │ ├── 6595.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6608 │ │ │ │ │ │ ├── 6608.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6662 │ │ │ │ │ │ ├── 6662.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6751 │ │ │ │ │ │ ├── 6751.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7131 │ │ │ │ │ │ ├── 7131.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 13616 │ │ │ │ │ │ ├── 13616.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 10011CMSPasteTest-1 │ │ │ │ │ │ ├── 10011CMSPasteTest-1.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 10053doubles │ │ │ │ │ │ ├── 10053doubles.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 10285test │ │ │ │ │ │ ├── 10285test.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 10485sample_test_doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 10643sample1 │ │ │ │ │ │ ├── 10643sample1.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 10672Lists_Test │ │ │ │ │ │ ├── 10672Lists_Test.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 10780word_margin_bug │ │ │ │ │ │ ├── 10780word margin bug.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 10783list-break2 │ │ │ │ │ │ ├── 10783list-break2.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 10784line_missing │ │ │ │ │ │ ├── 10784line missing.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11005Test_WordDoc │ │ │ │ │ │ ├── 11005Test_WordDoc.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11054CKEditor-Bug │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── ie11.html │ │ │ │ │ ├── 11136bugged_file │ │ │ │ │ │ ├── 11136bugged file.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11215sample_error_word │ │ │ │ │ │ ├── 11215sample error word.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11218sample │ │ │ │ │ │ ├── 11218sample.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11237borderBug │ │ │ │ │ │ ├── 11237borderBug.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11294NotesFormatting │ │ │ │ │ │ ├── 11294NotesFormatting.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11376bullets_v1 │ │ │ │ │ │ ├── 11376bullets_v1.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11477Table_in_word │ │ │ │ │ │ ├── 11477Table in word.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11529Table_OO │ │ │ │ │ │ ├── 11529Table_OO.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11683CKEditor_Source │ │ │ │ │ │ ├── 11683CKEditor_Source.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11683pasteData │ │ │ │ │ │ ├── 11683pasteData.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11699PasteExample-1 │ │ │ │ │ │ ├── 11699PasteExample-1.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11950Test_Table │ │ │ │ │ │ ├── 11950Test Table.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 11987sample1 │ │ │ │ │ │ ├── 11987sample1.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 12385number_list │ │ │ │ │ │ ├── 12385number_list.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 12406Doc1 │ │ │ │ │ │ ├── 12406Doc1.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 12406Document1_(3) │ │ │ │ │ │ ├── 12406Document1 (3).docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 12740CKEditor_-_Internal_Error_on_Paste_as_CTRL-V(1) │ │ │ │ │ │ ├── 12740CKEditor - Internal Error on Paste as CTRL-V(1).docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 12740WSGCN-3550_Test_document_minimal │ │ │ │ │ │ ├── 12740WSGCN-3550 Test document minimal.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 12821ELL_Forum_Invitation │ │ │ │ │ │ ├── 12821ELL_Forum_Invitation.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 13021testdoc │ │ │ │ │ │ ├── 13021testdoc.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 13174Testdocument │ │ │ │ │ │ ├── 13174Testdocument.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 13174Testdocument2 │ │ │ │ │ │ ├── 13174Testdocument2.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 13174Testdocument3 │ │ │ │ │ │ ├── 13174Testdocument3.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 13339Internal_Error_on_Paste_as_CTRL-V │ │ │ │ │ │ ├── 13339Internal Error on Paste as CTRL-V.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 13590ckeditor-numberlist │ │ │ │ │ │ ├── 13590ckeditor-numberlist.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 13634example │ │ │ │ │ │ ├── 13634example.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 13651ckeditor_report_bug │ │ │ │ │ │ ├── 13651ckeditor report bug.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 13810test │ │ │ │ │ │ ├── 13810test.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 14257test2 │ │ │ │ │ │ ├── 14257test2.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 1457list-test │ │ │ │ │ │ ├── 1457list-test.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 14867examples │ │ │ │ │ │ ├── 14867examples.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 16593regular_paste │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ ├── expected_edge.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── ie11.html │ │ │ │ │ ├── 16682listWithMargin │ │ │ │ │ │ ├── 16682listWithMargin.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2016 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ └── expected_edge.html │ │ │ │ │ ├── 16682noIndentation │ │ │ │ │ │ ├── 16682noIndentation.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2016 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ └── expected_edge.html │ │ │ │ │ ├── 16745MixedListsAndParagraphs │ │ │ │ │ │ ├── MixedListsAndParagraphs.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2016 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ └── expected_edge.html │ │ │ │ │ ├── 16817SampleDocForDataLossBug │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ │ └── word2016 │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ └── expected_edge.html │ │ │ │ │ ├── 16826OrderedList │ │ │ │ │ │ ├── OrderedList.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2007 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ └── ie11.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 16833Numbered_lists │ │ │ │ │ │ ├── 16833Numbered.and.Bulleted.Lists.with.Headings.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ │ └── word2016 │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ └── expected_edge.html │ │ │ │ │ ├── 16860Faked_list │ │ │ │ │ │ ├── 16860Faked_list.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ ├── word2007 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ │ ├── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── safari.html │ │ │ │ │ │ └── word2016 │ │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ │ └── expected_edge.html │ │ │ │ │ ├── 1707bug_fckeditor │ │ │ │ │ │ ├── 1707bug_fckeditor.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 3039blog_test_2003_(2) │ │ │ │ │ │ ├── 3039blog test 2003 (2).doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 3744BigWikiArticle │ │ │ │ │ │ ├── 3744BigWikiArticle.doc │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ └── expected_ie8.html │ │ │ │ │ ├── 3828TestList │ │ │ │ │ │ ├── 3828TestList.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 3959Test_doc_with_date │ │ │ │ │ │ ├── 3959Test_doc_with_date.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 3959Test_doc_without_date │ │ │ │ │ │ ├── 3959Test_doc_without_date.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 4427test-document │ │ │ │ │ │ ├── 4427test-document.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 445Spanish_5-2-07 │ │ │ │ │ │ ├── 445Spanish_5-2-07.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 4883_Test │ │ │ │ │ │ ├── 4883_Test.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 4894CustomStyleTest │ │ │ │ │ │ ├── 4894CustomStyleTest.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 4895ListFontSizeTests │ │ │ │ │ │ ├── 4895ListFontSizeTests.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 5134Sample │ │ │ │ │ │ ├── 5134Sample.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 5300Sample │ │ │ │ │ │ ├── 5300Sample.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 5399This_is_a_line_of_text │ │ │ │ │ │ ├── 5399This_is_a_line_of_text.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 5743bulletlist │ │ │ │ │ │ ├── 5743bulletlist.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 5808Word_test │ │ │ │ │ │ ├── 5808Word test.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6086test │ │ │ │ │ │ ├── 6086test.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6241Sample_word_doc │ │ │ │ │ │ ├── 6241Sample_word_doc.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6286Sample_6286 │ │ │ │ │ │ ├── 6286Sample 6286.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6330bullets │ │ │ │ │ │ ├── 6330bullets.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6362Numbering │ │ │ │ │ │ ├── 6362Numbering.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6449Sample │ │ │ │ │ │ ├── 6449Sample.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6493Questions_and_answers │ │ │ │ │ │ ├── 6493Questions_and_answers.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6533test_doc │ │ │ │ │ │ ├── 6533test_doc.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6570ordered_list │ │ │ │ │ │ ├── 6570ordered_list.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6570ordered_list_97 │ │ │ │ │ │ ├── 6570ordered_list_97.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6639nested_list_with_empty_lines │ │ │ │ │ │ ├── 6639nested_list_with_empty_lines.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6658CKEditor_Word_tabs_between_list_items_Sample │ │ │ │ │ │ ├── 6658CKEditor_Word_tabs_between_list_items_Sample.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6662bullets │ │ │ │ │ │ ├── 6662bullets.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6711Text_Boxes │ │ │ │ │ │ ├── 6711Text_Boxes.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6751TextToPaste │ │ │ │ │ │ ├── 6751TextToPaste.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6751disappearing_spaces_example2 │ │ │ │ │ │ ├── 6751disappearing_spaces_example2.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 682tester │ │ │ │ │ │ ├── 682tester.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6956CKEditor_pasting_issue │ │ │ │ │ │ ├── 6956CKEditor pasting issue.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6973CKEditor_pasting_issue │ │ │ │ │ │ ├── 6973CKEditor pasting issue.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6973TestNegativeHeadingIndent │ │ │ │ │ │ ├── 6973TestNegativeHeadingIndent.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 6973This_is_a_line_of_text.2 │ │ │ │ │ │ ├── 6973This is a line of text.2.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7131TC_7131_2 │ │ │ │ │ │ ├── 7131TC_7131_2.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7131customNumbering │ │ │ │ │ │ ├── 7131customNumbering.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7209test2 │ │ │ │ │ │ ├── 7209test2.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7262preformatted_list │ │ │ │ │ │ ├── 7262preformatted_list.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7269Test_with_footnote │ │ │ │ │ │ ├── 7269Test with footnote.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7371BugReport_Example │ │ │ │ │ │ ├── 7371BugReport_Example.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7480BulletedList │ │ │ │ │ │ ├── 7480BulletedList.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7494Numbers_&_Bulltes_lists │ │ │ │ │ │ ├── 7494Numbers & Bulltes lists.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7521simple_table │ │ │ │ │ │ ├── 7521simple table.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7581Numbering │ │ │ │ │ │ ├── 7581Numbering.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7581fancyList │ │ │ │ │ │ ├── 7581fancyList.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7584Numbered_list_with_diff_start_value │ │ │ │ │ │ ├── 7584Numbered list with diff start value.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7593Numbere_&_Bullet_list_with_list_styles_applied │ │ │ │ │ │ ├── 7593Numbere & Bullet list with list styles applied.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7610Multi_level_Numbered_list │ │ │ │ │ │ ├── 7610Multi level Numbered list.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7620AlphabeticNumberingLists │ │ │ │ │ │ ├── 7620AlphabeticNumberingLists.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7661Multilevel_lists │ │ │ │ │ │ ├── 7661Multilevel lists.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7696empty_table │ │ │ │ │ │ ├── 7696empty table.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7797fonts │ │ │ │ │ │ ├── 7797fonts.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7857pasting_RTL_lists_from_word_defect │ │ │ │ │ │ ├── 7857pasting RTL lists from word defect.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7872lists │ │ │ │ │ │ ├── 7872lists.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7918Numbering │ │ │ │ │ │ ├── 7918Numbering.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7950Sample_word_doc │ │ │ │ │ │ ├── 7950Sample_word_doc.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 7954list_with_Roman_Numerals_&_Start_Value_5 │ │ │ │ │ │ ├── 7954list with Roman Numerals & Start Value 5.doc │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 8437WORD_ABC │ │ │ │ │ │ ├── 8437WORD_ABC.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 8501FromWord │ │ │ │ │ │ ├── 8501FromWord.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 8665Tartalom │ │ │ │ │ │ ├── 8665Tartalom.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 8734list_test │ │ │ │ │ │ ├── 8734list test.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 8734list_test2 │ │ │ │ │ │ ├── 8734list_test2.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 8780ckeditor_tablebug_document │ │ │ │ │ │ ├── 8780ckeditor_tablebug_document.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 9144test │ │ │ │ │ │ ├── 9144test.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 9274CKEditor_formating_issue │ │ │ │ │ │ ├── 9274CKEditor_formating_issue.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 9322Sample_Document2 │ │ │ │ │ │ ├── 9322Sample Document2.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ ├── ie8.html │ │ │ │ │ │ │ └── ie_11.html │ │ │ │ │ ├── 9330Sample_Anchor_Document │ │ │ │ │ │ ├── 9330Sample Anchor Document.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ ├── ie8.html │ │ │ │ │ │ │ └── ie_11.html │ │ │ │ │ ├── 9331ckBugWord1 │ │ │ │ │ │ ├── 9331ckBugWord1.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ ├── ie8.html │ │ │ │ │ │ │ └── ie_11.html │ │ │ │ │ ├── 9340test_ckeditor │ │ │ │ │ │ ├── 9340test_ckeditor.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ ├── ie8.html │ │ │ │ │ │ │ └── ie_11.html │ │ │ │ │ ├── 9422for_cke │ │ │ │ │ │ ├── 9422for_cke.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ ├── ie8.html │ │ │ │ │ │ │ └── ie_11.html │ │ │ │ │ ├── 9424CK_Sample_word_document │ │ │ │ │ │ ├── 9424CK_Sample word document.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 9426CK_Sample_word_document │ │ │ │ │ │ ├── 9426CK_Sample_word_document.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 9456Stuff_to_get │ │ │ │ │ │ ├── 9456Stuff to get.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ ├── ie8.html │ │ │ │ │ │ │ └── ie_11.html │ │ │ │ │ ├── 9456list_paste_from_msword │ │ │ │ │ │ ├── 9456list_paste_from_msword.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie8.html │ │ │ │ │ │ │ └── ie_11.html │ │ │ │ │ ├── 9456text-with-bullet-list-example │ │ │ │ │ │ ├── 9456text-with-bullet-list-example.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 9475List2010 │ │ │ │ │ │ ├── 9475List2010.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ ├── ie8.html │ │ │ │ │ │ │ └── ie_11.html │ │ │ │ │ ├── 9475list2003 │ │ │ │ │ │ ├── 9475list2003.doc │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 9616word_table │ │ │ │ │ │ ├── 9616word_table.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── 9685ckeditor_tablebug_document │ │ │ │ │ │ ├── 9685ckeditor_tablebug_document.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── 9685testResumeTest │ │ │ │ │ │ ├── 9685testResumeTest.docx │ │ │ │ │ │ ├── expected.html │ │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── ie8.html │ │ │ │ ├── Underline │ │ │ │ │ ├── Underline.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Unordered_list │ │ │ │ │ ├── Unordered_list.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ │ └── word2016 │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── expected_edge.html │ │ │ │ ├── Unordered_list_adjusted_margin │ │ │ │ │ ├── Unordered_list_adjusted_margin.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ └── word2016 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── expected_edge.html │ │ │ │ │ │ └── firefox.html │ │ │ │ ├── Unordered_list_multiple │ │ │ │ │ ├── Unordered_list_multiple.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2007 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie8.html │ │ │ │ │ ├── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ │ └── word2016 │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ └── expected_edge.html │ │ │ │ ├── Unordered_list_special_char_bullet │ │ │ │ │ ├── Unordered_list_special_char_bullet.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ └── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie11.html │ │ │ │ ├── Unordered_nested_list │ │ │ │ │ ├── expected.html │ │ │ │ │ └── onenote │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ ├── Vertical_margin │ │ │ │ │ ├── Vertical_margin.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ ├── word2013 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── expected_chrome.html │ │ │ │ │ │ ├── expected_firefox.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── expected_safari.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ ├── ie11.html │ │ │ │ │ │ └── safari.html │ │ │ │ │ └── word2016 │ │ │ │ │ │ ├── chrome.html │ │ │ │ │ │ ├── edge.html │ │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ │ ├── firefox.html │ │ │ │ │ │ └── ie11.html │ │ │ │ └── White_space │ │ │ │ │ ├── White_space.docx │ │ │ │ │ ├── expected.html │ │ │ │ │ └── word2013 │ │ │ │ │ ├── chrome.html │ │ │ │ │ ├── datatransfer.html │ │ │ │ │ ├── edge.html │ │ │ │ │ ├── expected_edge.html │ │ │ │ │ ├── expected_ie11.html │ │ │ │ │ ├── expected_ie8.html │ │ │ │ │ ├── firefox.html │ │ │ │ │ ├── ie11.html │ │ │ │ │ └── ie8.html │ │ │ ├── _helpers │ │ │ │ ├── assertWordFilter.js │ │ │ │ ├── createTestCase.js │ │ │ │ ├── createTestSuite.js │ │ │ │ ├── pfwTools.js │ │ │ │ └── promisePasteEvent.js │ │ │ ├── config.js │ │ │ ├── enter_br.js │ │ │ ├── excel.js │ │ │ ├── functions.html │ │ │ ├── functions.js │ │ │ ├── generic.js │ │ │ ├── generic_strict.js │ │ │ ├── heuristics.html │ │ │ ├── heuristics.js │ │ │ ├── image.js │ │ │ ├── imagesextraction.js │ │ │ ├── inline_styles.js │ │ │ ├── keep_margins_in_lists.js │ │ │ ├── keep_zero_margins_in_lists.js │ │ │ ├── list_indentation.js │ │ │ ├── list_margins.js │ │ │ ├── nested_list.js │ │ │ ├── new.js │ │ │ ├── ordered_list_with_list_symbol.js │ │ │ ├── pagebreak.js │ │ │ ├── pagebreakfilter.js │ │ │ ├── paragraph_indentation.js │ │ │ ├── shapesdetection.js │ │ │ ├── table.js │ │ │ ├── tickets1.js │ │ │ ├── tickets2.js │ │ │ ├── tickets3.js │ │ │ ├── tickets4.js │ │ │ ├── tickets5.js │ │ │ ├── tickets6.js │ │ │ ├── tickets7.js │ │ │ ├── tickets_strict.js │ │ │ └── vertical_margin.js │ │ ├── manual │ │ │ ├── _assets │ │ │ │ ├── 3586.xlsx │ │ │ │ ├── CKEditor4.PFW.Sample.Mixed_styles.docx │ │ │ │ ├── CKEditor4.PFW.Sample.Recognition_of_Achievement.docx │ │ │ │ ├── Image_safari.docx │ │ │ │ ├── image_with_hrline.docx │ │ │ │ ├── keep_zero_margins.docx │ │ │ │ ├── list_with_margins.docx │ │ │ │ ├── outlook1.msg │ │ │ │ ├── page_break.docx │ │ │ │ ├── page_break_simple.docx │ │ │ │ ├── removedclasses.css │ │ │ │ ├── table_border.docx │ │ │ │ ├── tables.docx │ │ │ │ └── tables.xls │ │ │ ├── configheuristicsedgelist.html │ │ │ ├── configheuristicsedgelist.md │ │ │ ├── configremovefont.html │ │ │ ├── configremovefont.md │ │ │ ├── edgelists.html │ │ │ ├── edgelists.md │ │ │ ├── enterbr.html │ │ │ ├── enterbr.md │ │ │ ├── fontbackground.html │ │ │ ├── fontbackground.md │ │ │ ├── full.html │ │ │ ├── full.md │ │ │ ├── imagesduplicated.html │ │ │ ├── imagesduplicated.md │ │ │ ├── imagesgif.html │ │ │ ├── imagesgif.md │ │ │ ├── imagesinheaderfooter.html │ │ │ ├── imagesinheaderfooter.md │ │ │ ├── imagesunsupported.html │ │ │ ├── imagesunsupported.md │ │ │ ├── inlinestyles.html │ │ │ ├── inlinestyles.md │ │ │ ├── keepmarginsinlists.html │ │ │ ├── keepmarginsinlists.md │ │ │ ├── keepzeromargins.html │ │ │ ├── keepzeromargins.md │ │ │ ├── keepzeromarginsinlists.html │ │ │ ├── keepzeromarginsinlists.md │ │ │ ├── listindentation.html │ │ │ ├── listindentation.md │ │ │ ├── listwithlistsymbolintext.html │ │ │ ├── listwithlistsymbolintext.md │ │ │ ├── nofilter.html │ │ │ ├── nofilter.md │ │ │ ├── onenotelist.html │ │ │ ├── onenotelist.md │ │ │ ├── pagebreak.html │ │ │ ├── pagebreak.md │ │ │ ├── pagebreakfilter.html │ │ │ ├── pagebreakfilter.md │ │ │ ├── paragraphindent.html │ │ │ ├── paragraphindent.md │ │ │ ├── pastefromexcel.html │ │ │ ├── pastefromexcel.md │ │ │ ├── pastefromword.html │ │ │ ├── pastefromword.md │ │ │ ├── pastefromwordevent.html │ │ │ ├── pastefromwordevent.md │ │ │ ├── pasteimage.html │ │ │ ├── pasteimage.md │ │ │ ├── pasteimagessafari.html │ │ │ ├── pasteimagessafari.md │ │ │ ├── pasteimagewithhrline.html │ │ │ ├── pasteimagewithhrline.md │ │ │ ├── pasteimagewithhrlineeasyimage.html │ │ │ ├── pasteimagewithhrlineeasyimage.md │ │ │ ├── pasteimagewithlink.html │ │ │ ├── pasteimagewithlink.md │ │ │ ├── pastetable.html │ │ │ ├── pastetable.md │ │ │ ├── pastewordwithimage.html │ │ │ ├── pastewordwithimage.md │ │ │ ├── preserveexcelstyles.html │ │ │ ├── preserveexcelstyles.md │ │ │ ├── preventpastefromword.html │ │ │ ├── preventpastefromword.md │ │ │ ├── regularpaste.html │ │ │ ├── regularpaste.md │ │ │ ├── removedclasses.html │ │ │ ├── removedclasses.md │ │ │ ├── tableborders.html │ │ │ ├── tableborders.md │ │ │ ├── unorderedlist.html │ │ │ ├── unorderedlist.md │ │ │ ├── unorderedlistspecialchar.html │ │ │ └── unorderedlistspecialchar.md │ │ ├── metageneratordetection.js │ │ ├── multiplehandlers.js │ │ ├── pasteimage.html │ │ ├── pasteimage.js │ │ ├── resetforcefromwordstartfrompastefromword.js │ │ └── resetforcefromwordstartfromregularpaste.js │ ├── pastetext │ │ ├── manual │ │ │ ├── safaripasteplaintext.html │ │ │ └── safaripasteplaintext.md │ │ └── pastetext.js │ ├── pastetools │ │ ├── _helpers │ │ │ └── ptTools.js │ │ ├── filter │ │ │ ├── _fixtures │ │ │ │ ├── duplicatedimage.json │ │ │ │ ├── duplicatedimage.rtf │ │ │ │ ├── hyperlinkedimage_mac.json │ │ │ │ ├── hyperlinkedimage_mac.rtf │ │ │ │ ├── hyperlinkedimage_win.json │ │ │ │ ├── hyperlinkedimage_win.rtf │ │ │ │ ├── imagewithhorizontalline.json │ │ │ │ ├── imagewithhorizontalline.rtf │ │ │ │ ├── multipleimagesandshapes_mac.json │ │ │ │ ├── multipleimagesandshapes_mac.rtf │ │ │ │ ├── multipleimagesandshapes_win.json │ │ │ │ ├── multipleimagesandshapes_win.rtf │ │ │ │ ├── noimage_win.json │ │ │ │ ├── noimage_win.rtf │ │ │ │ ├── singleimage_win.json │ │ │ │ ├── singleimage_win.rtf │ │ │ │ ├── twoimages_mac.json │ │ │ │ ├── twoimages_mac.rtf │ │ │ │ ├── wrappedimage_mac.json │ │ │ │ ├── wrappedimage_mac.rtf │ │ │ │ ├── wrappedimage_win.json │ │ │ │ └── wrappedimage_win.rtf │ │ │ ├── common.js │ │ │ ├── functions.js │ │ │ ├── image.js │ │ │ ├── imagehelpers.html │ │ │ ├── imagehelpers.js │ │ │ ├── parsestyles.html │ │ │ ├── parsestyles.js │ │ │ └── rtf.js │ │ ├── loadingfilters.js │ │ ├── manual │ │ │ ├── _assets │ │ │ │ ├── filter1.js │ │ │ │ └── filter2.js │ │ │ ├── loadingfilters.html │ │ │ ├── loadingfilters.md │ │ │ ├── multiplehandlers.html │ │ │ ├── multiplehandlers.md │ │ │ ├── pastetools.html │ │ │ └── pastetools.md │ │ └── pastetools.js │ ├── placeholder │ │ ├── dialog.html │ │ ├── dialog.js │ │ ├── downcasting.html │ │ ├── downcasting.js │ │ ├── manual │ │ │ ├── arialabel.html │ │ │ └── arialabel.md │ │ ├── parsing.html │ │ ├── parsing.js │ │ └── upcasting.js │ ├── preview │ │ ├── manual │ │ │ ├── previewcdn.html │ │ │ ├── previewcdn.md │ │ │ ├── previewpreservelinks.html │ │ │ ├── previewpreservelinks.md │ │ │ ├── previewtitle.html │ │ │ └── previewtitle.md │ │ └── preview.js │ ├── print │ │ ├── manual │ │ │ ├── print.html │ │ │ ├── print.md │ │ │ ├── sourcemode.html │ │ │ └── sourcemode.md │ │ └── print.js │ ├── removeformat │ │ ├── manual │ │ │ ├── collapsed.html │ │ │ ├── collapsed.md │ │ │ ├── selection.html │ │ │ └── selection.md │ │ └── plugin.js │ ├── resize │ │ └── manual │ │ │ ├── firedimensions.html │ │ │ └── firedimensions.md │ ├── richcombo │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── manual │ │ │ ├── ariaexpanded.html │ │ │ ├── ariaexpanded.md │ │ │ ├── arialabel.html │ │ │ ├── arialabel.md │ │ │ ├── rightclick.html │ │ │ ├── rightclick.md │ │ │ ├── select.html │ │ │ └── select.md │ │ ├── richcombo.js │ │ └── state.js │ ├── save │ │ ├── manual │ │ │ ├── sourcemode.html │ │ │ └── sourcemode.md │ │ ├── save.html │ │ └── save.js │ ├── selectall │ │ ├── manual │ │ │ ├── selectall.html │ │ │ └── selectall.md │ │ └── selectall.js │ ├── sharedspace │ │ ├── sharedspace.html │ │ └── sharedspace.js │ ├── showblocks │ │ └── showblocks.js │ ├── sourcearea │ │ ├── aria.js │ │ ├── source.html │ │ └── source.js │ ├── sourcedialog │ │ └── sourcedialog.js │ ├── specialchar │ │ ├── dialog.js │ │ └── manual │ │ │ ├── presentationrole.html │ │ │ └── presentationrole.md │ ├── stylescombo │ │ ├── customstyles.js │ │ ├── langattribute.js │ │ ├── manual │ │ │ ├── langattribute.html │ │ │ ├── langattribute.md │ │ │ ├── removeblockformat.html │ │ │ ├── removeblockformat.md │ │ │ ├── squarebulletedlist.html │ │ │ ├── squarebulletedlist.md │ │ │ ├── stylewithnoselection.html │ │ │ └── stylewithnoselection.md │ │ └── stylescombo.js │ ├── tab │ │ ├── _assets │ │ │ └── styles.css │ │ ├── errorinlineeditor.js │ │ ├── manual │ │ │ ├── focusafteraddednewrow.html │ │ │ ├── focusafteraddednewrow.md │ │ │ ├── focusafteraddednewrownative.html │ │ │ ├── focusafteraddednewrownative.md │ │ │ ├── taberrorininlineeditor.html │ │ │ ├── taberrorininlineeditor.md │ │ │ ├── tabpreservesstyles.html │ │ │ ├── tabpreservesstyles.md │ │ │ ├── tabpreserveundostep.html │ │ │ └── tabpreserveundostep.md │ │ ├── tab.js │ │ ├── tablefocus.js │ │ └── tablenativefocus.js │ ├── table │ │ ├── _helpers │ │ │ └── testheadersmanipulation.js │ │ ├── caption.js │ │ ├── fakeselectionadvancetab.js │ │ ├── headers1row1col.html │ │ ├── headers1row1col.js │ │ ├── headers1row2col.html │ │ ├── headers1row2col.js │ │ ├── headers2row1col.html │ │ ├── headers2row1col.js │ │ ├── headers2row2col.html │ │ ├── headers2row2col.js │ │ ├── manual │ │ │ ├── border.html │ │ │ ├── border.md │ │ │ ├── changescopeattribute.html │ │ │ ├── changescopeattribute.md │ │ │ ├── dialogvalidate.html │ │ │ ├── dialogvalidate.md │ │ │ ├── editingmode.html │ │ │ ├── editingmode.md │ │ │ ├── fakeselectionadvancetab.html │ │ │ ├── fakeselectionadvancetab.md │ │ │ ├── onlyrowheader.html │ │ │ ├── onlyrowheader.md │ │ │ ├── scopeattribute.html │ │ │ ├── scopeattribute.md │ │ │ ├── tagsorder.html │ │ │ └── tagsorder.md │ │ ├── table.html │ │ ├── table.js │ │ └── validate.js │ ├── tableresize │ │ ├── manual │ │ │ ├── empty.html │ │ │ ├── empty.md │ │ │ ├── footeronly.html │ │ │ ├── footeronly.md │ │ │ ├── headeronly.html │ │ │ ├── headeronly.md │ │ │ ├── iebordercollapse.html │ │ │ ├── iebordercollapse.md │ │ │ ├── maximizeddivarea.html │ │ │ ├── maximizeddivarea.md │ │ │ ├── maximizedinlinedivarea.html │ │ │ ├── maximizedinlinedivarea.md │ │ │ ├── mergedcells.html │ │ │ ├── mergedcells.md │ │ │ ├── pillar.html │ │ │ ├── pillar.md │ │ │ ├── rowspan.html │ │ │ ├── rowspan.md │ │ │ ├── scrollupdate.html │ │ │ ├── scrollupdate.md │ │ │ ├── undo.html │ │ │ └── undo.md │ │ ├── tableresize.html │ │ └── tableresize.js │ ├── tableselection │ │ ├── _helpers │ │ │ └── tableselection.js │ │ ├── getcellsbetween.html │ │ ├── getcellsbetween.js │ │ ├── integrations │ │ │ ├── basicstyles │ │ │ │ ├── basicstyles.html │ │ │ │ └── basicstyles.js │ │ │ ├── clipboard │ │ │ │ ├── pasteflow.html │ │ │ │ ├── pasteflow.js │ │ │ │ ├── pastemerge.html │ │ │ │ ├── pastemerge.js │ │ │ │ ├── pastenested.html │ │ │ │ ├── pastenested.js │ │ │ │ ├── pasteomittingtableselection.html │ │ │ │ ├── pasteomittingtableselection.js │ │ │ │ ├── pastewrapped.html │ │ │ │ ├── pastewrapped.js │ │ │ │ └── xss.js │ │ │ ├── core │ │ │ │ ├── getextractselectedhtml.html │ │ │ │ ├── getextractselectedhtml.js │ │ │ │ ├── selection.html │ │ │ │ ├── selection.js │ │ │ │ ├── style.html │ │ │ │ └── style.js │ │ │ ├── enterkey │ │ │ │ └── enterkey.js │ │ │ ├── image │ │ │ │ ├── imageurl.html │ │ │ │ └── imageurl.js │ │ │ ├── image2 │ │ │ │ ├── _assets │ │ │ │ │ └── bar.png │ │ │ │ ├── manual │ │ │ │ │ ├── deselectwidget.html │ │ │ │ │ └── deselectwidget.md │ │ │ │ └── paste.js │ │ │ ├── link │ │ │ │ ├── link.html │ │ │ │ └── link.js │ │ │ ├── selectall │ │ │ │ ├── selectall.html │ │ │ │ └── selectall.js │ │ │ └── tabletools │ │ │ │ ├── columndeletion.html │ │ │ │ ├── columndeletion.js │ │ │ │ ├── tabletools.html │ │ │ │ └── tabletools.js │ │ ├── keyboard.html │ │ ├── keyboard.js │ │ ├── manual │ │ │ ├── blur.html │ │ │ ├── blur.md │ │ │ ├── caption.html │ │ │ ├── caption.md │ │ │ ├── cellbackground.html │ │ │ ├── cellbackground.md │ │ │ ├── contextmenu.html │ │ │ ├── contextmenu.md │ │ │ ├── drag.html │ │ │ ├── drag.md │ │ │ ├── draganddropimage.html │ │ │ ├── draganddropimage.md │ │ │ ├── draganddropimageintable.html │ │ │ ├── draganddropimageintable.md │ │ │ ├── draganddropmixedcontent.html │ │ │ ├── draganddropmixedcontent.md │ │ │ ├── draganddroptext.html │ │ │ ├── draganddroptext.md │ │ │ ├── editingmode.html │ │ │ ├── editingmode.md │ │ │ ├── editortypes.html │ │ │ ├── editortypes.md │ │ │ ├── enable.html │ │ │ ├── enable.md │ │ │ ├── enterkey.html │ │ │ ├── enterkey.md │ │ │ ├── environment.html │ │ │ ├── environment.md │ │ │ ├── firefoxrightclick.html │ │ │ ├── firefoxrightclick.md │ │ │ ├── ignore.html │ │ │ ├── ignore.md │ │ │ ├── inlineeditor.html │ │ │ ├── inlineeditor.md │ │ │ ├── integrations │ │ │ │ ├── basicstyles │ │ │ │ │ ├── basicstyles.html │ │ │ │ │ ├── basicstyles.md │ │ │ │ │ ├── native.html │ │ │ │ │ └── native.md │ │ │ │ ├── clipboard │ │ │ │ │ ├── clipboard.html │ │ │ │ │ ├── clipboard.md │ │ │ │ │ ├── merge.html │ │ │ │ │ ├── merge.md │ │ │ │ │ ├── mergeemptycell.html │ │ │ │ │ ├── mergeemptycell.md │ │ │ │ │ ├── mixedcontent.html │ │ │ │ │ ├── mixedcontent.md │ │ │ │ │ ├── nestedtable.html │ │ │ │ │ ├── nestedtable.md │ │ │ │ │ ├── nestedtablecut.html │ │ │ │ │ ├── nestedtablecut.md │ │ │ │ │ ├── nestedtablemultiple.html │ │ │ │ │ ├── nestedtablemultiple.md │ │ │ │ │ ├── selectall.html │ │ │ │ │ ├── selectall.md │ │ │ │ │ ├── xss.html │ │ │ │ │ └── xss.md │ │ │ │ ├── enterkey │ │ │ │ │ ├── enterkey.html │ │ │ │ │ └── enterkey.md │ │ │ │ ├── image │ │ │ │ │ ├── nestedimage.html │ │ │ │ │ └── nestedimage.md │ │ │ │ ├── image2 │ │ │ │ │ ├── _assets │ │ │ │ │ │ └── bar.png │ │ │ │ │ ├── paste.html │ │ │ │ │ └── paste.md │ │ │ │ ├── link │ │ │ │ │ ├── edit.html │ │ │ │ │ ├── edit.md │ │ │ │ │ ├── link.html │ │ │ │ │ ├── link.md │ │ │ │ │ ├── text.html │ │ │ │ │ └── text.md │ │ │ │ ├── selectall │ │ │ │ │ ├── selectall.html │ │ │ │ │ ├── selectall.md │ │ │ │ │ ├── table.html │ │ │ │ │ └── table.md │ │ │ │ └── tabletools │ │ │ │ │ ├── celldelete.html │ │ │ │ │ ├── celldelete.md │ │ │ │ │ ├── cellmerge.html │ │ │ │ │ ├── cellmerge.md │ │ │ │ │ ├── columndeletionerror.html │ │ │ │ │ ├── columndeletionerror.md │ │ │ │ │ ├── tabletools.html │ │ │ │ │ └── tabletools.md │ │ │ ├── irregular.html │ │ │ ├── irregular.md │ │ │ ├── keystrokes.html │ │ │ ├── keystrokes.md │ │ │ ├── mouse.html │ │ │ ├── mouse.md │ │ │ ├── native.html │ │ │ ├── native.md │ │ │ ├── nativeenterkey.html │ │ │ ├── nativeenterkey.md │ │ │ ├── nestedheader.html │ │ │ ├── nestedheader.md │ │ │ ├── nestedtable.html │ │ │ ├── nestedtable.md │ │ │ ├── nestedtablescroll.html │ │ │ ├── nestedtablescroll.md │ │ │ ├── outsideeditor.html │ │ │ ├── outsideeditor.md │ │ │ ├── outsidetable.html │ │ │ ├── outsidetable.md │ │ │ ├── partialdelete.html │ │ │ ├── partialdelete.md │ │ │ ├── pastenestedtable.html │ │ │ ├── pastenestedtable.md │ │ │ ├── readonly.html │ │ │ ├── readonly.md │ │ │ ├── rightclick.html │ │ │ ├── rightclick.md │ │ │ ├── safaritheadlastcolumn.html │ │ │ ├── safaritheadlastcolumn.md │ │ │ ├── safaritheadlastcolumnmouse.html │ │ │ ├── safaritheadlastcolumnmouse.md │ │ │ ├── scrollmouseover.html │ │ │ ├── scrollmouseover.md │ │ │ ├── selectioncursor.html │ │ │ ├── selectioncursor.md │ │ │ ├── selectionleak.html │ │ │ ├── selectionleak.md │ │ │ ├── selectionstyling.html │ │ │ ├── selectionstyling.md │ │ │ ├── styleleak.html │ │ │ ├── styleleak.md │ │ │ ├── tabbackspace.html │ │ │ ├── tabbackspace.md │ │ │ ├── tableselection.html │ │ │ ├── tableselection.md │ │ │ ├── tabletyping.html │ │ │ ├── tabletyping.md │ │ │ ├── widget.html │ │ │ └── widget.md │ │ ├── nativeenterkey.js │ │ ├── rightclick.html │ │ ├── rightclick.js │ │ ├── scrollmouseover.js │ │ ├── tableselection.html │ │ └── tableselection.js │ ├── tabletools │ │ ├── _helpers │ │ │ └── cellproperties.js │ │ ├── allowedcontent.js │ │ ├── cellproperties.html │ │ ├── cellproperties.js │ │ ├── columndeletion.html │ │ ├── columndeletion.js │ │ ├── manual │ │ │ ├── allowedcontent.html │ │ │ ├── allowedcontent.md │ │ │ ├── cellheight.html │ │ │ ├── cellheight.md │ │ │ ├── cellproperties.html │ │ │ ├── cellproperties.md │ │ │ ├── cellpropertiescelltype.html │ │ │ ├── cellpropertiescelltype.md │ │ │ ├── colordialogposition.html │ │ │ ├── colordialogposition.md │ │ │ ├── columndeletionerror.html │ │ │ ├── columndeletionerror.md │ │ │ ├── editingmode.html │ │ │ ├── editingmode.md │ │ │ ├── filebrowserintegration.html │ │ │ ├── filebrowserintegration.md │ │ │ ├── insertcolumnverticalsplit.html │ │ │ ├── insertcolumnverticalsplit.md │ │ │ ├── mergecells.html │ │ │ ├── mergecells.md │ │ │ ├── scopedheaders.html │ │ │ ├── scopedheaders.md │ │ │ ├── splithorizontal.html │ │ │ ├── splithorizontal.md │ │ │ ├── splitvertical.html │ │ │ ├── splitvertical.md │ │ │ └── transformations │ │ │ │ ├── mixedbackground.html │ │ │ │ └── mixedbackground.md │ │ ├── tablemap.html │ │ ├── tablemap.js │ │ ├── tabletools.html │ │ └── tabletools.js │ ├── templates │ │ ├── _assets │ │ │ ├── html │ │ │ │ └── titleAndText.html │ │ │ ├── images │ │ │ │ └── titleAndText.gif │ │ │ └── test.js │ │ ├── manual │ │ │ ├── checkboxposition.html │ │ │ ├── checkboxposition.md │ │ │ ├── dialogstate.html │ │ │ ├── dialogstate.md │ │ │ ├── inserttemplate.html │ │ │ ├── inserttemplate.md │ │ │ ├── inserttemplatereplace.html │ │ │ └── inserttemplatereplace.md │ │ └── templates.js │ ├── textmatch │ │ ├── manual │ │ │ ├── fillingcharsequence.html │ │ │ └── fillingcharsequence.md │ │ ├── staticfunctions.html │ │ └── staticfunctions.js │ ├── textwatcher │ │ ├── manual │ │ │ ├── movementkeys.html │ │ │ ├── movementkeys.md │ │ │ ├── throttle.html │ │ │ └── throttle.md │ │ └── textwatcher.js │ ├── toolbar │ │ ├── basic.js │ │ ├── config.js │ │ └── manual │ │ │ ├── ariahaspopup.html │ │ │ ├── ariahaspopup.md │ │ │ ├── focus.html │ │ │ ├── focus.md │ │ │ ├── hover │ │ │ ├── __template__.html │ │ │ ├── androidbutton.md │ │ │ ├── androidbuttonkama.md │ │ │ ├── androidbuttonmoono.md │ │ │ ├── androidrichcombo.md │ │ │ ├── androidrichcombokama.md │ │ │ ├── androidrichcombomoono.md │ │ │ ├── desktopbutton.md │ │ │ ├── desktopbuttonkama.md │ │ │ ├── desktopbuttonmoono.md │ │ │ ├── desktoprichcombo.md │ │ │ ├── desktoprichcombokama.md │ │ │ ├── desktoprichcombomoono.md │ │ │ ├── iosbutton.md │ │ │ ├── iosbuttonkama.md │ │ │ ├── iosbuttonmoono.md │ │ │ ├── iosrichcombo.md │ │ │ ├── iosrichcombokama.md │ │ │ └── iosrichcombomoono.md │ │ │ ├── jawsstartupfocus.html │ │ │ ├── jawsstartupfocus.md │ │ │ ├── removebuttons.html │ │ │ ├── removebuttons.md │ │ │ ├── vofocus.html │ │ │ └── vofocus.md │ ├── uicolor │ │ ├── manual │ │ │ ├── uicolor.html │ │ │ └── uicolor.md │ │ └── uicolor.js │ ├── undo │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── change.html │ │ ├── change.js │ │ ├── filter.js │ │ ├── getnextimage.js │ │ ├── integrations.js │ │ ├── keyboard.html │ │ ├── keyboard.js │ │ ├── keyeventsstack.js │ │ ├── manual │ │ │ ├── changeevent.html │ │ │ ├── changeevent.md │ │ │ ├── propercomposition.html │ │ │ └── propercomposition.md │ │ ├── pointer.html │ │ ├── pointer.js │ │ ├── setdatasetmode.html │ │ ├── setdatasetmode.js │ │ ├── undo.html │ │ └── undo.js │ ├── uploadfile │ │ ├── _assets │ │ │ └── logo.webp │ │ ├── _helpers │ │ │ └── waitForImage.js │ │ ├── manual │ │ │ ├── changeevent.html │ │ │ ├── changeevent.md │ │ │ ├── uploadfilenotificationoff.html │ │ │ └── uploadfilenotificationoff.md │ │ └── uploadfile.js │ ├── uploadimage │ │ ├── _assets │ │ │ └── logo.webp │ │ ├── manual │ │ │ ├── changeevent.html │ │ │ ├── changeevent.md │ │ │ ├── clipboardintegration.html │ │ │ ├── clipboardintegration.md │ │ │ ├── configerror.html │ │ │ ├── configerror.md │ │ │ ├── customsupportedtypes.html │ │ │ ├── customsupportedtypes.md │ │ │ ├── unsupportedfileformat.html │ │ │ └── unsupportedfileformat.md │ │ └── uploadimage.js │ ├── uploadwidget │ │ ├── _assets │ │ │ ├── logo │ │ │ ├── logo.svg │ │ │ └── logo.webp │ │ ├── additionalrequestparameters.js │ │ ├── bindnotifications.js │ │ ├── manual │ │ │ ├── __template__.html │ │ │ ├── _helpers │ │ │ │ ├── xhr.js │ │ │ │ ├── xhrerror.js │ │ │ │ └── xhrnoupload.js │ │ │ ├── abortupload.html │ │ │ ├── abortupload.md │ │ │ ├── droponemptydocument.html │ │ │ ├── droponemptydocument.md │ │ │ ├── droponnotallowedparts.html │ │ │ ├── droponnotallowedparts.md │ │ │ ├── editorremoval.html │ │ │ ├── editorremoval.md │ │ │ ├── error.md │ │ │ ├── escapecssuploadimage.html │ │ │ ├── escapecssuploadimage.md │ │ │ ├── fileformatnotification.html │ │ │ ├── fileformatnotification.md │ │ │ ├── image.html │ │ │ ├── image.md │ │ │ ├── image2.md │ │ │ ├── noserverresponseencoding.html │ │ │ ├── noserverresponseencoding.md │ │ │ ├── nouploadprogress.md │ │ │ ├── skipnotification.html │ │ │ ├── skipnotification.md │ │ │ ├── unsupportedfileformat.html │ │ │ ├── unsupportedfileformat.md │ │ │ ├── unsupportedfileformatmultiple.html │ │ │ └── unsupportedfileformatmultiple.md │ │ └── uploadwidget.js │ ├── widget │ │ ├── _assets │ │ │ └── bar.png │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── acf.js │ │ ├── activefilter.js │ │ ├── boundingwhitespaces.js │ │ ├── checkdirty.js │ │ ├── contextmenu.js │ │ ├── customstylehandler.js │ │ ├── customstylehandlerloading.js │ │ ├── definition.js │ │ ├── deleteemptyblockbetweenwidgets.js │ │ ├── dnd.html │ │ ├── dnd.js │ │ ├── editing.js │ │ ├── elementspath.html │ │ ├── elementspath.js │ │ ├── inlineeditables.js │ │ ├── insertparagraphnexttowidget.js │ │ ├── integration │ │ │ ├── dialog │ │ │ │ └── model.js │ │ │ ├── selection │ │ │ │ ├── _helpers │ │ │ │ │ └── customwidget.js │ │ │ │ ├── crosscontentselection.js │ │ │ │ ├── inputselection.js │ │ │ │ ├── manual │ │ │ │ │ ├── crosscontentselection.html │ │ │ │ │ ├── crosscontentselection.md │ │ │ │ │ ├── ieinputwidget.html │ │ │ │ │ ├── ieinputwidget.md │ │ │ │ │ ├── ietextareawidget.html │ │ │ │ │ ├── ietextareawidget.md │ │ │ │ │ ├── linemerge.html │ │ │ │ │ ├── linemerge.md │ │ │ │ │ ├── releasingselection.html │ │ │ │ │ ├── releasingselection.md │ │ │ │ │ ├── widgetinsideselection.html │ │ │ │ │ └── widgetinsideselection.md │ │ │ │ └── safaricrosscontentselection.js │ │ │ ├── table │ │ │ │ ├── _helpers │ │ │ │ │ └── testwidgets.js │ │ │ │ └── manual │ │ │ │ │ ├── widgetintable.html │ │ │ │ │ ├── widgetintable.md │ │ │ │ │ ├── widgetintablewithtableselection.html │ │ │ │ │ └── widgetintablewithtableselection.md │ │ │ └── wysiwygarea │ │ │ │ ├── manual │ │ │ │ ├── preventofremovingdiv.html │ │ │ │ └── preventofremovingdiv.md │ │ │ │ └── superflousdoesntremovedivwrapper.js │ │ ├── keystroke.js │ │ ├── manual │ │ │ ├── arialabel.html │ │ │ ├── arialabel.md │ │ │ ├── block.html │ │ │ ├── block.md │ │ │ ├── clipboardhtml.html │ │ │ ├── clipboardhtml.md │ │ │ ├── clipboardhtmldnd.html │ │ │ ├── clipboardhtmldnd.md │ │ │ ├── clipboardhtmlselectall.html │ │ │ ├── clipboardhtmlselectall.md │ │ │ ├── contextmenushortcuts.html │ │ │ ├── contextmenushortcuts.md │ │ │ ├── deleteparagraph.html │ │ │ ├── deleteparagraph.md │ │ │ ├── deleteparagraphbetween.html │ │ │ ├── deleteparagraphbetween.md │ │ │ ├── dnd.html │ │ │ ├── dnd.md │ │ │ ├── draghandlerreadonly.html │ │ │ ├── draghandlerreadonly.md │ │ │ ├── dragwidget.html │ │ │ ├── dragwidget.md │ │ │ ├── editingmode.html │ │ │ ├── editingmode.md │ │ │ ├── enterkey.html │ │ │ ├── enterkey.md │ │ │ ├── inline.html │ │ │ ├── inline.md │ │ │ ├── inlineeditable.html │ │ │ ├── inlineeditable.md │ │ │ ├── insertparagraphbetween.html │ │ │ ├── insertparagraphbetween.md │ │ │ ├── insertparagraphblockwidget.html │ │ │ ├── insertparagraphblockwidget.md │ │ │ ├── insertparagraphentermodes.html │ │ │ ├── insertparagraphentermodes.md │ │ │ ├── insertparagraphinlinewidget.html │ │ │ ├── insertparagraphinlinewidget.md │ │ │ ├── keystroke.html │ │ │ ├── keystroke.md │ │ │ ├── nestedautoparagraphing.html │ │ │ ├── nestedautoparagraphing.md │ │ │ ├── nesteddisallowedcontent.html │ │ │ ├── nesteddisallowedcontent.md │ │ │ ├── nestededitablefilters.html │ │ │ ├── nestededitablefilters.md │ │ │ ├── nestedprotected.html │ │ │ ├── nestedprotected.md │ │ │ ├── nestedprotectedcomplex.html │ │ │ ├── nestedprotectedcomplex.md │ │ │ ├── outline.html │ │ │ ├── outline.md │ │ │ ├── parentdnd.html │ │ │ ├── parentdnd.md │ │ │ ├── partialmask.html │ │ │ ├── partialmask.md │ │ │ ├── pastewidget.html │ │ │ ├── pastewidget.md │ │ │ ├── readonly.html │ │ │ ├── readonly.md │ │ │ ├── refreshmaskapi.html │ │ │ ├── refreshmaskapi.md │ │ │ ├── scrolloncut.html │ │ │ ├── scrolloncut.md │ │ │ ├── selectall.html │ │ │ ├── selectall.md │ │ │ ├── selectallkeyrefresh.html │ │ │ ├── selectallkeyrefresh.md │ │ │ ├── selectallsourcemode.html │ │ │ ├── selectallsourcemode.md │ │ │ ├── startupdata.html │ │ │ ├── startupdata.md │ │ │ ├── stylegroups.html │ │ │ ├── stylegroups.md │ │ │ ├── undo.html │ │ │ ├── undo.md │ │ │ ├── widgetwithspaces.html │ │ │ └── widgetwithspaces.md │ │ ├── nestededitables.html │ │ ├── nestededitables.js │ │ ├── nestedwidgets.js │ │ ├── onwidget.html │ │ ├── onwidget.js │ │ ├── refreshmaskapi.js │ │ ├── refreshpartsandmask.js │ │ ├── undo.js │ │ ├── widgetapi.js │ │ ├── widgetselection.html │ │ ├── widgetselection.js │ │ ├── widgetsintegration.js │ │ ├── widgetsrepoapi.html │ │ └── widgetsrepoapi.js │ ├── widgetselection │ │ ├── _helpers │ │ │ └── tools.js │ │ ├── addfillers.js │ │ ├── filler.js │ │ ├── integration.js │ │ ├── iswholecontentselected.js │ │ ├── keys.html │ │ ├── keys.js │ │ ├── manual │ │ │ ├── basic.html │ │ │ ├── basic.md │ │ │ ├── image2.html │ │ │ ├── image2.md │ │ │ ├── inlinefocussteal.html │ │ │ ├── inlinefocussteal.md │ │ │ ├── selectall.html │ │ │ ├── selectall.md │ │ │ ├── specialcharacters.html │ │ │ └── specialcharacters.md │ │ ├── paste.js │ │ ├── removefillers.js │ │ └── selectall.js │ ├── wysiwygarea │ │ ├── _assets │ │ │ ├── contents.css │ │ │ └── contents2.css │ │ ├── aria.js │ │ ├── contentscss.html │ │ ├── contentscss.js │ │ ├── contentscssgeturl.html │ │ ├── contentscssgeturl.js │ │ ├── detached.html │ │ ├── detached.js │ │ ├── framedwysiwyg.js │ │ ├── fullpage.html │ │ ├── fullpage.js │ │ ├── manual │ │ │ ├── ariareadonlyscreenreader.html │ │ │ ├── ariareadonlyscreenreader.md │ │ │ ├── ariarolescreenreader.html │ │ │ ├── ariarolescreenreader.md │ │ │ ├── detached.html │ │ │ ├── detached.md │ │ │ ├── detachedembededimage.html │ │ │ ├── detachedembededimage.md │ │ │ ├── detachedembededimagesource.html │ │ │ ├── detachedembededimagesource.md │ │ │ ├── detachedsourceundo.html │ │ │ ├── detachedsourceundo.md │ │ │ ├── detachedtwoeditors.html │ │ │ ├── detachedtwoeditors.md │ │ │ ├── detachedundo.html │ │ │ ├── detachedundo.md │ │ │ ├── detachedwithplugins.html │ │ │ ├── detachedwithplugins.md │ │ │ ├── detachedwithpluginsfullpage.html │ │ │ ├── detachedwithpluginsfullpage.md │ │ │ ├── mutationobserverdisconnected.html │ │ │ ├── mutationobserverdisconnected.md │ │ │ ├── mutationobservernamespace.html │ │ │ ├── mutationobservernamespace.md │ │ │ ├── tabindex.html │ │ │ └── tabindex.md │ │ ├── nopagescroll.html │ │ ├── nopagescroll.js │ │ └── superfluouselement.js │ └── xml │ │ └── xml.js ├── tickets │ ├── 174 │ │ └── 1.js │ ├── 4282 │ │ ├── 1.js │ │ └── _assets │ │ │ ├── a1.js │ │ │ ├── a2.js │ │ │ └── a3.js │ ├── 4527 │ │ └── 1.js │ ├── 8584 │ │ ├── csp.html │ │ └── csp.md │ ├── 9330 │ │ ├── 1.html │ │ ├── 1.js │ │ └── _assets │ │ │ ├── tc1.docx │ │ │ ├── tc1_word2010_gecko.html │ │ │ ├── tc1_word2010_ie.html │ │ │ └── tc1_word2010_webkit.html │ ├── 9780 │ │ └── manual │ │ │ ├── 1.html │ │ │ └── 1.md │ ├── 9883 │ │ └── 1.js │ ├── 10015 │ │ ├── 1.html │ │ └── 1.md │ ├── 10146 │ │ └── 1.js │ ├── 10212 │ │ └── 1.js │ ├── 10285 │ │ └── 1.js │ ├── 10367 │ │ └── 1.js │ ├── 10448 │ │ ├── 1.html │ │ ├── 1.js │ │ ├── 2.html │ │ └── 2.md │ ├── 10778 │ │ └── 1.js │ ├── 11009 │ │ ├── 1.html │ │ └── 1.js │ ├── 11110 │ │ └── 1.js │ ├── 11121 │ │ ├── 1.html │ │ └── 1.js │ ├── 11307 │ │ └── 1.js │ ├── 11372 │ │ ├── 1.html │ │ └── 1.js │ ├── 11384 │ │ └── 1.js │ ├── 11478 │ │ ├── 1.html │ │ └── 1.js │ ├── 11500 │ │ └── 1.js │ ├── 11504 │ │ ├── 1.html │ │ └── 1.js │ ├── 11568 │ │ └── 1.js │ ├── 11574 │ │ ├── 1.html │ │ └── 1.js │ ├── 11616 │ │ ├── 1.html │ │ ├── 1.md │ │ ├── 2.html │ │ └── 2.md │ ├── 11641 │ │ └── 1.js │ ├── 12111 │ │ └── 1.js │ ├── 12377 │ │ └── 1.js │ ├── 12484 │ │ ├── 1.html │ │ └── 1.md │ ├── 12621 │ │ └── 1.js │ ├── 12733 │ │ ├── 1.html │ │ └── 1.md │ ├── 12735 │ │ ├── 1.html │ │ └── 1.md │ ├── 12747 │ │ ├── 1.html │ │ └── 1.md │ ├── 12777 │ │ ├── 1.html │ │ ├── 1.md │ │ ├── 2.html │ │ └── 2.md │ ├── 12812 │ │ ├── 1.html │ │ ├── 1.md │ │ └── _assets │ │ │ └── inlineeditor.html │ ├── 13011 │ │ ├── 1.html │ │ └── 1.md │ ├── 13105 │ │ └── 1.js │ ├── 13158 │ │ ├── 1.html │ │ └── 1.md │ ├── 13254 │ │ ├── 1.html │ │ ├── 1.js │ │ ├── 2.html │ │ └── 2.md │ ├── 13284 │ │ ├── 1.html │ │ └── 1.md │ ├── 13361 │ │ ├── 1.js │ │ ├── 2.html │ │ ├── 2.md │ │ └── _assets │ │ │ ├── '.png │ │ │ ├── (.png │ │ │ └── ).png │ ├── 13362 │ │ ├── 1.html │ │ ├── 1.md │ │ └── _assets │ │ │ └── image1.jpg │ ├── 13386 │ │ ├── 1.html │ │ └── 1.md │ ├── 13393 │ │ ├── 1.html │ │ └── 1.md │ ├── 13441 │ │ ├── 1.html │ │ └── 1.md │ ├── 13453 │ │ ├── 1.html │ │ └── 1.md │ ├── 13465 │ │ ├── 1.html │ │ └── 1.md │ ├── 13468 │ │ ├── 1.html │ │ └── 1.md │ ├── 13548 │ │ ├── 1.html │ │ └── 1.md │ ├── 13554 │ │ ├── 1.html │ │ └── 1.md │ ├── 13771 │ │ ├── 1.js │ │ ├── 2.html │ │ └── 2.md │ ├── 13790 │ │ └── 1.js │ ├── 13812 │ │ ├── 1.html │ │ └── 1.md │ ├── 13867 │ │ ├── 1.html │ │ ├── 1.md │ │ ├── 2.html │ │ ├── 2.js │ │ └── _helpers │ │ │ ├── include.html │ │ │ ├── includeunit.html │ │ │ └── polyfill.js │ ├── 14312 │ │ ├── 1.html │ │ └── 1.md │ ├── 14451 │ │ ├── 1.html │ │ └── 1.md │ ├── 14573 │ │ └── manual │ │ │ ├── widgetdraghandler.html │ │ │ └── widgetdraghandler.md │ ├── 14659 │ │ └── manual │ │ │ ├── 1.html │ │ │ ├── 1.md │ │ │ ├── 2.html │ │ │ ├── 2.md │ │ │ ├── 3.html │ │ │ ├── 3.md │ │ │ ├── 4.html │ │ │ └── 4.md │ ├── 14714 │ │ └── manual │ │ │ ├── 1.html │ │ │ ├── 1.md │ │ │ ├── 2.html │ │ │ ├── 2.md │ │ │ ├── 3.html │ │ │ └── 3.md │ ├── 14755 │ │ ├── 1.js │ │ └── manual │ │ │ ├── 1.html │ │ │ └── 1.md │ ├── 14825 │ │ └── 1.js │ ├── 16393 │ │ └── manual │ │ │ ├── 1.html │ │ │ └── 1.md │ ├── 16745 │ │ └── manual │ │ │ ├── 1.html │ │ │ └── 1.md │ ├── 16818 │ │ └── manual │ │ │ ├── cellheight.html │ │ │ └── cellheight.md │ ├── 16820 │ │ └── manual │ │ │ ├── 1.html │ │ │ └── 1.md │ ├── 16821 │ │ ├── height.html │ │ └── height.md │ ├── 16826 │ │ ├── ielists.html │ │ └── ielists.md │ └── gh663 │ │ └── manual │ │ ├── 1.html │ │ └── 1.md └── utils │ ├── assert │ ├── isinnerhtmlmatching.js │ └── isnumberinrange.js │ ├── html │ └── compareinnerhtml.js │ ├── initeditor │ ├── editor.js │ ├── editorasyncinit.js │ ├── editorinit.js │ ├── editors.js │ ├── editorsasyncinit.js │ ├── editorsconfig.js │ ├── editorsinit.js │ └── editorsnonames.js │ ├── misc.js │ ├── range │ ├── setgetwithhtml.html │ └── setgetwithhtml.js │ ├── selection │ └── setgetwithhtml.js │ ├── setgethtmlwithrangeselection.html │ ├── setgethtmlwithrangeselection.js │ └── testhelpers.js └── vendor └── promise.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/.jshintrc -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/.mailmap -------------------------------------------------------------------------------- /.npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/.npm/README.md -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/SECURITY.md -------------------------------------------------------------------------------- /adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/adapters/jquery.js -------------------------------------------------------------------------------- /bender.ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/bender.ci.js -------------------------------------------------------------------------------- /bender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/bender.js -------------------------------------------------------------------------------- /ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/ckeditor.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/config.js -------------------------------------------------------------------------------- /contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/contents.css -------------------------------------------------------------------------------- /core/_bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/_bootstrap.js -------------------------------------------------------------------------------- /core/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/ckeditor.js -------------------------------------------------------------------------------- /core/ckeditor_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/ckeditor_base.js -------------------------------------------------------------------------------- /core/ckeditor_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/ckeditor_basic.js -------------------------------------------------------------------------------- /core/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/command.js -------------------------------------------------------------------------------- /core/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/config.js -------------------------------------------------------------------------------- /core/creators/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/creators/inline.js -------------------------------------------------------------------------------- /core/dataprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dataprocessor.js -------------------------------------------------------------------------------- /core/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom.js -------------------------------------------------------------------------------- /core/dom/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/comment.js -------------------------------------------------------------------------------- /core/dom/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/document.js -------------------------------------------------------------------------------- /core/dom/domobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/domobject.js -------------------------------------------------------------------------------- /core/dom/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/element.js -------------------------------------------------------------------------------- /core/dom/elementpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/elementpath.js -------------------------------------------------------------------------------- /core/dom/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/event.js -------------------------------------------------------------------------------- /core/dom/iterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/iterator.js -------------------------------------------------------------------------------- /core/dom/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/node.js -------------------------------------------------------------------------------- /core/dom/nodelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/nodelist.js -------------------------------------------------------------------------------- /core/dom/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/range.js -------------------------------------------------------------------------------- /core/dom/rangelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/rangelist.js -------------------------------------------------------------------------------- /core/dom/rect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/rect.js -------------------------------------------------------------------------------- /core/dom/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/text.js -------------------------------------------------------------------------------- /core/dom/walker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/walker.js -------------------------------------------------------------------------------- /core/dom/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dom/window.js -------------------------------------------------------------------------------- /core/dtd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/dtd.js -------------------------------------------------------------------------------- /core/editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/editable.js -------------------------------------------------------------------------------- /core/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/editor.js -------------------------------------------------------------------------------- /core/editor_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/editor_basic.js -------------------------------------------------------------------------------- /core/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/env.js -------------------------------------------------------------------------------- /core/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/event.js -------------------------------------------------------------------------------- /core/eventInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/eventInfo.js -------------------------------------------------------------------------------- /core/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/filter.js -------------------------------------------------------------------------------- /core/focusmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/focusmanager.js -------------------------------------------------------------------------------- /core/htmlparser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/htmlparser.js -------------------------------------------------------------------------------- /core/htmlparser/cdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/htmlparser/cdata.js -------------------------------------------------------------------------------- /core/htmlparser/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/htmlparser/node.js -------------------------------------------------------------------------------- /core/htmlparser/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/htmlparser/text.js -------------------------------------------------------------------------------- /core/keystrokehandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/keystrokehandler.js -------------------------------------------------------------------------------- /core/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/lang.js -------------------------------------------------------------------------------- /core/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/loader.js -------------------------------------------------------------------------------- /core/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/log.js -------------------------------------------------------------------------------- /core/plugindefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/plugindefinition.js -------------------------------------------------------------------------------- /core/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/plugins.js -------------------------------------------------------------------------------- /core/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/promise.js -------------------------------------------------------------------------------- /core/resourcemanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/resourcemanager.js -------------------------------------------------------------------------------- /core/scriptloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/scriptloader.js -------------------------------------------------------------------------------- /core/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/selection.js -------------------------------------------------------------------------------- /core/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/skin.js -------------------------------------------------------------------------------- /core/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/style.js -------------------------------------------------------------------------------- /core/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/template.js -------------------------------------------------------------------------------- /core/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/tools.js -------------------------------------------------------------------------------- /core/tools/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/tools/color.js -------------------------------------------------------------------------------- /core/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/core/ui.js -------------------------------------------------------------------------------- /dev/builder/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/builder/build.sh -------------------------------------------------------------------------------- /dev/console/console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/console/console.css -------------------------------------------------------------------------------- /dev/console/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/console/console.js -------------------------------------------------------------------------------- /dev/docs/codestyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/docs/codestyle.md -------------------------------------------------------------------------------- /dev/dtd/dtd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/dtd/dtd.html -------------------------------------------------------------------------------- /dev/getemoji/getemoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/getemoji/getemoji.js -------------------------------------------------------------------------------- /dev/langtool/_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/langtool/_common.sh -------------------------------------------------------------------------------- /dev/langtool/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/langtool/config -------------------------------------------------------------------------------- /dev/langtool/langtool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/langtool/langtool.sh -------------------------------------------------------------------------------- /dev/tasks/githooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/tasks/githooks.js -------------------------------------------------------------------------------- /dev/tasks/jscs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/tasks/jscs.js -------------------------------------------------------------------------------- /dev/tasks/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/tasks/jshint.js -------------------------------------------------------------------------------- /dev/tasks/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/tasks/plugin.js -------------------------------------------------------------------------------- /dev/tasks/samples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/tasks/samples.js -------------------------------------------------------------------------------- /dev/tasks/utils/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/dev/tasks/utils/tools.js -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/gruntfile.js -------------------------------------------------------------------------------- /lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/af.js -------------------------------------------------------------------------------- /lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/ar.js -------------------------------------------------------------------------------- /lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/az.js -------------------------------------------------------------------------------- /lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/bg.js -------------------------------------------------------------------------------- /lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/bn.js -------------------------------------------------------------------------------- /lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/bs.js -------------------------------------------------------------------------------- /lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/ca.js -------------------------------------------------------------------------------- /lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/cs.js -------------------------------------------------------------------------------- /lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/cy.js -------------------------------------------------------------------------------- /lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/da.js -------------------------------------------------------------------------------- /lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/de-ch.js -------------------------------------------------------------------------------- /lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/de.js -------------------------------------------------------------------------------- /lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/el.js -------------------------------------------------------------------------------- /lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/en-au.js -------------------------------------------------------------------------------- /lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/en-ca.js -------------------------------------------------------------------------------- /lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/en-gb.js -------------------------------------------------------------------------------- /lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/en.js -------------------------------------------------------------------------------- /lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/eo.js -------------------------------------------------------------------------------- /lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/es-mx.js -------------------------------------------------------------------------------- /lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/es.js -------------------------------------------------------------------------------- /lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/et.js -------------------------------------------------------------------------------- /lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/eu.js -------------------------------------------------------------------------------- /lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/fa.js -------------------------------------------------------------------------------- /lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/fi.js -------------------------------------------------------------------------------- /lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/fo.js -------------------------------------------------------------------------------- /lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/fr-ca.js -------------------------------------------------------------------------------- /lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/fr.js -------------------------------------------------------------------------------- /lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/gl.js -------------------------------------------------------------------------------- /lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/gu.js -------------------------------------------------------------------------------- /lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/he.js -------------------------------------------------------------------------------- /lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/hi.js -------------------------------------------------------------------------------- /lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/hr.js -------------------------------------------------------------------------------- /lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/hu.js -------------------------------------------------------------------------------- /lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/id.js -------------------------------------------------------------------------------- /lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/is.js -------------------------------------------------------------------------------- /lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/it.js -------------------------------------------------------------------------------- /lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/ja.js -------------------------------------------------------------------------------- /lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/ka.js -------------------------------------------------------------------------------- /lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/km.js -------------------------------------------------------------------------------- /lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/ko.js -------------------------------------------------------------------------------- /lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/ku.js -------------------------------------------------------------------------------- /lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/lt.js -------------------------------------------------------------------------------- /lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/lv.js -------------------------------------------------------------------------------- /lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/mk.js -------------------------------------------------------------------------------- /lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/mn.js -------------------------------------------------------------------------------- /lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/ms.js -------------------------------------------------------------------------------- /lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/nb.js -------------------------------------------------------------------------------- /lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/nl.js -------------------------------------------------------------------------------- /lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/no.js -------------------------------------------------------------------------------- /lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/oc.js -------------------------------------------------------------------------------- /lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/pl.js -------------------------------------------------------------------------------- /lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/pt-br.js -------------------------------------------------------------------------------- /lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/pt.js -------------------------------------------------------------------------------- /lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/ro.js -------------------------------------------------------------------------------- /lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/ru.js -------------------------------------------------------------------------------- /lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/si.js -------------------------------------------------------------------------------- /lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/sk.js -------------------------------------------------------------------------------- /lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/sl.js -------------------------------------------------------------------------------- /lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/sq.js -------------------------------------------------------------------------------- /lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/sr-latn.js -------------------------------------------------------------------------------- /lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/sr.js -------------------------------------------------------------------------------- /lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/sv.js -------------------------------------------------------------------------------- /lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/th.js -------------------------------------------------------------------------------- /lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/tr.js -------------------------------------------------------------------------------- /lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/tt.js -------------------------------------------------------------------------------- /lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/ug.js -------------------------------------------------------------------------------- /lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/uk.js -------------------------------------------------------------------------------- /lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/vi.js -------------------------------------------------------------------------------- /lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/zh-cn.js -------------------------------------------------------------------------------- /lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/lang/zh.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/package.json -------------------------------------------------------------------------------- /plugins/about/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/af.js -------------------------------------------------------------------------------- /plugins/about/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/ar.js -------------------------------------------------------------------------------- /plugins/about/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/az.js -------------------------------------------------------------------------------- /plugins/about/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/bg.js -------------------------------------------------------------------------------- /plugins/about/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/bn.js -------------------------------------------------------------------------------- /plugins/about/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/bs.js -------------------------------------------------------------------------------- /plugins/about/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/ca.js -------------------------------------------------------------------------------- /plugins/about/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/cs.js -------------------------------------------------------------------------------- /plugins/about/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/cy.js -------------------------------------------------------------------------------- /plugins/about/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/da.js -------------------------------------------------------------------------------- /plugins/about/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/de.js -------------------------------------------------------------------------------- /plugins/about/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/el.js -------------------------------------------------------------------------------- /plugins/about/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/en.js -------------------------------------------------------------------------------- /plugins/about/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/eo.js -------------------------------------------------------------------------------- /plugins/about/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/es.js -------------------------------------------------------------------------------- /plugins/about/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/et.js -------------------------------------------------------------------------------- /plugins/about/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/eu.js -------------------------------------------------------------------------------- /plugins/about/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/fa.js -------------------------------------------------------------------------------- /plugins/about/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/fi.js -------------------------------------------------------------------------------- /plugins/about/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/fo.js -------------------------------------------------------------------------------- /plugins/about/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/fr.js -------------------------------------------------------------------------------- /plugins/about/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/gl.js -------------------------------------------------------------------------------- /plugins/about/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/gu.js -------------------------------------------------------------------------------- /plugins/about/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/he.js -------------------------------------------------------------------------------- /plugins/about/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/hi.js -------------------------------------------------------------------------------- /plugins/about/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/hr.js -------------------------------------------------------------------------------- /plugins/about/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/hu.js -------------------------------------------------------------------------------- /plugins/about/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/id.js -------------------------------------------------------------------------------- /plugins/about/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/is.js -------------------------------------------------------------------------------- /plugins/about/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/it.js -------------------------------------------------------------------------------- /plugins/about/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/ja.js -------------------------------------------------------------------------------- /plugins/about/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/ka.js -------------------------------------------------------------------------------- /plugins/about/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/km.js -------------------------------------------------------------------------------- /plugins/about/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/ko.js -------------------------------------------------------------------------------- /plugins/about/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/ku.js -------------------------------------------------------------------------------- /plugins/about/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/lt.js -------------------------------------------------------------------------------- /plugins/about/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/lv.js -------------------------------------------------------------------------------- /plugins/about/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/mk.js -------------------------------------------------------------------------------- /plugins/about/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/mn.js -------------------------------------------------------------------------------- /plugins/about/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/ms.js -------------------------------------------------------------------------------- /plugins/about/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/nb.js -------------------------------------------------------------------------------- /plugins/about/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/nl.js -------------------------------------------------------------------------------- /plugins/about/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/no.js -------------------------------------------------------------------------------- /plugins/about/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/oc.js -------------------------------------------------------------------------------- /plugins/about/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/pl.js -------------------------------------------------------------------------------- /plugins/about/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/pt.js -------------------------------------------------------------------------------- /plugins/about/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/ro.js -------------------------------------------------------------------------------- /plugins/about/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/ru.js -------------------------------------------------------------------------------- /plugins/about/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/si.js -------------------------------------------------------------------------------- /plugins/about/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/sk.js -------------------------------------------------------------------------------- /plugins/about/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/sl.js -------------------------------------------------------------------------------- /plugins/about/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/sq.js -------------------------------------------------------------------------------- /plugins/about/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/sr.js -------------------------------------------------------------------------------- /plugins/about/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/sv.js -------------------------------------------------------------------------------- /plugins/about/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/th.js -------------------------------------------------------------------------------- /plugins/about/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/tr.js -------------------------------------------------------------------------------- /plugins/about/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/tt.js -------------------------------------------------------------------------------- /plugins/about/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/ug.js -------------------------------------------------------------------------------- /plugins/about/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/uk.js -------------------------------------------------------------------------------- /plugins/about/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/vi.js -------------------------------------------------------------------------------- /plugins/about/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/lang/zh.js -------------------------------------------------------------------------------- /plugins/about/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/about/plugin.js -------------------------------------------------------------------------------- /plugins/ajax/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/ajax/plugin.js -------------------------------------------------------------------------------- /plugins/bbcode/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bbcode/plugin.js -------------------------------------------------------------------------------- /plugins/bidi/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/af.js -------------------------------------------------------------------------------- /plugins/bidi/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/ar.js -------------------------------------------------------------------------------- /plugins/bidi/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/az.js -------------------------------------------------------------------------------- /plugins/bidi/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/bg.js -------------------------------------------------------------------------------- /plugins/bidi/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/bn.js -------------------------------------------------------------------------------- /plugins/bidi/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/bs.js -------------------------------------------------------------------------------- /plugins/bidi/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/ca.js -------------------------------------------------------------------------------- /plugins/bidi/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/cs.js -------------------------------------------------------------------------------- /plugins/bidi/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/cy.js -------------------------------------------------------------------------------- /plugins/bidi/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/da.js -------------------------------------------------------------------------------- /plugins/bidi/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/de.js -------------------------------------------------------------------------------- /plugins/bidi/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/el.js -------------------------------------------------------------------------------- /plugins/bidi/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/en.js -------------------------------------------------------------------------------- /plugins/bidi/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/eo.js -------------------------------------------------------------------------------- /plugins/bidi/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/es.js -------------------------------------------------------------------------------- /plugins/bidi/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/et.js -------------------------------------------------------------------------------- /plugins/bidi/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/eu.js -------------------------------------------------------------------------------- /plugins/bidi/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/fa.js -------------------------------------------------------------------------------- /plugins/bidi/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/fi.js -------------------------------------------------------------------------------- /plugins/bidi/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/fo.js -------------------------------------------------------------------------------- /plugins/bidi/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/fr.js -------------------------------------------------------------------------------- /plugins/bidi/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/gl.js -------------------------------------------------------------------------------- /plugins/bidi/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/gu.js -------------------------------------------------------------------------------- /plugins/bidi/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/he.js -------------------------------------------------------------------------------- /plugins/bidi/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/hi.js -------------------------------------------------------------------------------- /plugins/bidi/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/hr.js -------------------------------------------------------------------------------- /plugins/bidi/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/hu.js -------------------------------------------------------------------------------- /plugins/bidi/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/id.js -------------------------------------------------------------------------------- /plugins/bidi/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/is.js -------------------------------------------------------------------------------- /plugins/bidi/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/it.js -------------------------------------------------------------------------------- /plugins/bidi/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/ja.js -------------------------------------------------------------------------------- /plugins/bidi/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/ka.js -------------------------------------------------------------------------------- /plugins/bidi/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/km.js -------------------------------------------------------------------------------- /plugins/bidi/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/ko.js -------------------------------------------------------------------------------- /plugins/bidi/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/ku.js -------------------------------------------------------------------------------- /plugins/bidi/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/lt.js -------------------------------------------------------------------------------- /plugins/bidi/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/lv.js -------------------------------------------------------------------------------- /plugins/bidi/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/mk.js -------------------------------------------------------------------------------- /plugins/bidi/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/mn.js -------------------------------------------------------------------------------- /plugins/bidi/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/ms.js -------------------------------------------------------------------------------- /plugins/bidi/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/nb.js -------------------------------------------------------------------------------- /plugins/bidi/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/nl.js -------------------------------------------------------------------------------- /plugins/bidi/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/no.js -------------------------------------------------------------------------------- /plugins/bidi/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/oc.js -------------------------------------------------------------------------------- /plugins/bidi/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/pl.js -------------------------------------------------------------------------------- /plugins/bidi/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/pt.js -------------------------------------------------------------------------------- /plugins/bidi/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/ro.js -------------------------------------------------------------------------------- /plugins/bidi/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/ru.js -------------------------------------------------------------------------------- /plugins/bidi/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/si.js -------------------------------------------------------------------------------- /plugins/bidi/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/sk.js -------------------------------------------------------------------------------- /plugins/bidi/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/sl.js -------------------------------------------------------------------------------- /plugins/bidi/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/sq.js -------------------------------------------------------------------------------- /plugins/bidi/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/sr.js -------------------------------------------------------------------------------- /plugins/bidi/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/sv.js -------------------------------------------------------------------------------- /plugins/bidi/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/th.js -------------------------------------------------------------------------------- /plugins/bidi/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/tr.js -------------------------------------------------------------------------------- /plugins/bidi/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/tt.js -------------------------------------------------------------------------------- /plugins/bidi/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/ug.js -------------------------------------------------------------------------------- /plugins/bidi/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/uk.js -------------------------------------------------------------------------------- /plugins/bidi/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/vi.js -------------------------------------------------------------------------------- /plugins/bidi/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/lang/zh.js -------------------------------------------------------------------------------- /plugins/bidi/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/bidi/plugin.js -------------------------------------------------------------------------------- /plugins/button/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/button/plugin.js -------------------------------------------------------------------------------- /plugins/dialog/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/dialog/plugin.js -------------------------------------------------------------------------------- /plugins/div/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/af.js -------------------------------------------------------------------------------- /plugins/div/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/ar.js -------------------------------------------------------------------------------- /plugins/div/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/az.js -------------------------------------------------------------------------------- /plugins/div/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/bg.js -------------------------------------------------------------------------------- /plugins/div/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/bn.js -------------------------------------------------------------------------------- /plugins/div/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/bs.js -------------------------------------------------------------------------------- /plugins/div/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/ca.js -------------------------------------------------------------------------------- /plugins/div/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/cs.js -------------------------------------------------------------------------------- /plugins/div/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/cy.js -------------------------------------------------------------------------------- /plugins/div/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/da.js -------------------------------------------------------------------------------- /plugins/div/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/de.js -------------------------------------------------------------------------------- /plugins/div/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/el.js -------------------------------------------------------------------------------- /plugins/div/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/en.js -------------------------------------------------------------------------------- /plugins/div/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/eo.js -------------------------------------------------------------------------------- /plugins/div/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/es.js -------------------------------------------------------------------------------- /plugins/div/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/et.js -------------------------------------------------------------------------------- /plugins/div/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/eu.js -------------------------------------------------------------------------------- /plugins/div/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/fa.js -------------------------------------------------------------------------------- /plugins/div/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/fi.js -------------------------------------------------------------------------------- /plugins/div/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/fo.js -------------------------------------------------------------------------------- /plugins/div/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/fr.js -------------------------------------------------------------------------------- /plugins/div/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/gl.js -------------------------------------------------------------------------------- /plugins/div/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/gu.js -------------------------------------------------------------------------------- /plugins/div/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/he.js -------------------------------------------------------------------------------- /plugins/div/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/hi.js -------------------------------------------------------------------------------- /plugins/div/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/hr.js -------------------------------------------------------------------------------- /plugins/div/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/hu.js -------------------------------------------------------------------------------- /plugins/div/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/id.js -------------------------------------------------------------------------------- /plugins/div/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/is.js -------------------------------------------------------------------------------- /plugins/div/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/it.js -------------------------------------------------------------------------------- /plugins/div/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/ja.js -------------------------------------------------------------------------------- /plugins/div/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/ka.js -------------------------------------------------------------------------------- /plugins/div/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/km.js -------------------------------------------------------------------------------- /plugins/div/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/ko.js -------------------------------------------------------------------------------- /plugins/div/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/ku.js -------------------------------------------------------------------------------- /plugins/div/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/lt.js -------------------------------------------------------------------------------- /plugins/div/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/lv.js -------------------------------------------------------------------------------- /plugins/div/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/mk.js -------------------------------------------------------------------------------- /plugins/div/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/mn.js -------------------------------------------------------------------------------- /plugins/div/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/ms.js -------------------------------------------------------------------------------- /plugins/div/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/nb.js -------------------------------------------------------------------------------- /plugins/div/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/nl.js -------------------------------------------------------------------------------- /plugins/div/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/no.js -------------------------------------------------------------------------------- /plugins/div/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/oc.js -------------------------------------------------------------------------------- /plugins/div/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/pl.js -------------------------------------------------------------------------------- /plugins/div/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/pt.js -------------------------------------------------------------------------------- /plugins/div/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/ro.js -------------------------------------------------------------------------------- /plugins/div/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/ru.js -------------------------------------------------------------------------------- /plugins/div/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/si.js -------------------------------------------------------------------------------- /plugins/div/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/sk.js -------------------------------------------------------------------------------- /plugins/div/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/sl.js -------------------------------------------------------------------------------- /plugins/div/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/sq.js -------------------------------------------------------------------------------- /plugins/div/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/sr.js -------------------------------------------------------------------------------- /plugins/div/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/sv.js -------------------------------------------------------------------------------- /plugins/div/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/th.js -------------------------------------------------------------------------------- /plugins/div/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/tr.js -------------------------------------------------------------------------------- /plugins/div/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/tt.js -------------------------------------------------------------------------------- /plugins/div/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/ug.js -------------------------------------------------------------------------------- /plugins/div/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/uk.js -------------------------------------------------------------------------------- /plugins/div/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/vi.js -------------------------------------------------------------------------------- /plugins/div/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/lang/zh.js -------------------------------------------------------------------------------- /plugins/div/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/div/plugin.js -------------------------------------------------------------------------------- /plugins/embed/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/embed/plugin.js -------------------------------------------------------------------------------- /plugins/emoji/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/emoji.json -------------------------------------------------------------------------------- /plugins/emoji/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/cs.js -------------------------------------------------------------------------------- /plugins/emoji/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/da.js -------------------------------------------------------------------------------- /plugins/emoji/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/de.js -------------------------------------------------------------------------------- /plugins/emoji/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/el.js -------------------------------------------------------------------------------- /plugins/emoji/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/en.js -------------------------------------------------------------------------------- /plugins/emoji/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/et.js -------------------------------------------------------------------------------- /plugins/emoji/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/fa.js -------------------------------------------------------------------------------- /plugins/emoji/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/fr.js -------------------------------------------------------------------------------- /plugins/emoji/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/gl.js -------------------------------------------------------------------------------- /plugins/emoji/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/hr.js -------------------------------------------------------------------------------- /plugins/emoji/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/hu.js -------------------------------------------------------------------------------- /plugins/emoji/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/it.js -------------------------------------------------------------------------------- /plugins/emoji/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/nl.js -------------------------------------------------------------------------------- /plugins/emoji/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/pl.js -------------------------------------------------------------------------------- /plugins/emoji/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/sk.js -------------------------------------------------------------------------------- /plugins/emoji/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/sr.js -------------------------------------------------------------------------------- /plugins/emoji/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/sv.js -------------------------------------------------------------------------------- /plugins/emoji/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/tr.js -------------------------------------------------------------------------------- /plugins/emoji/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/uk.js -------------------------------------------------------------------------------- /plugins/emoji/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/lang/zh.js -------------------------------------------------------------------------------- /plugins/emoji/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/emoji/plugin.js -------------------------------------------------------------------------------- /plugins/find/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/af.js -------------------------------------------------------------------------------- /plugins/find/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/ar.js -------------------------------------------------------------------------------- /plugins/find/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/az.js -------------------------------------------------------------------------------- /plugins/find/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/bg.js -------------------------------------------------------------------------------- /plugins/find/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/bn.js -------------------------------------------------------------------------------- /plugins/find/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/bs.js -------------------------------------------------------------------------------- /plugins/find/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/ca.js -------------------------------------------------------------------------------- /plugins/find/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/cs.js -------------------------------------------------------------------------------- /plugins/find/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/cy.js -------------------------------------------------------------------------------- /plugins/find/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/da.js -------------------------------------------------------------------------------- /plugins/find/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/de.js -------------------------------------------------------------------------------- /plugins/find/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/el.js -------------------------------------------------------------------------------- /plugins/find/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/en.js -------------------------------------------------------------------------------- /plugins/find/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/eo.js -------------------------------------------------------------------------------- /plugins/find/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/es.js -------------------------------------------------------------------------------- /plugins/find/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/et.js -------------------------------------------------------------------------------- /plugins/find/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/eu.js -------------------------------------------------------------------------------- /plugins/find/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/fa.js -------------------------------------------------------------------------------- /plugins/find/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/fi.js -------------------------------------------------------------------------------- /plugins/find/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/fo.js -------------------------------------------------------------------------------- /plugins/find/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/fr.js -------------------------------------------------------------------------------- /plugins/find/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/gl.js -------------------------------------------------------------------------------- /plugins/find/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/gu.js -------------------------------------------------------------------------------- /plugins/find/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/he.js -------------------------------------------------------------------------------- /plugins/find/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/hi.js -------------------------------------------------------------------------------- /plugins/find/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/hr.js -------------------------------------------------------------------------------- /plugins/find/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/hu.js -------------------------------------------------------------------------------- /plugins/find/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/id.js -------------------------------------------------------------------------------- /plugins/find/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/is.js -------------------------------------------------------------------------------- /plugins/find/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/it.js -------------------------------------------------------------------------------- /plugins/find/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/ja.js -------------------------------------------------------------------------------- /plugins/find/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/ka.js -------------------------------------------------------------------------------- /plugins/find/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/km.js -------------------------------------------------------------------------------- /plugins/find/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/ko.js -------------------------------------------------------------------------------- /plugins/find/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/ku.js -------------------------------------------------------------------------------- /plugins/find/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/lt.js -------------------------------------------------------------------------------- /plugins/find/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/lv.js -------------------------------------------------------------------------------- /plugins/find/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/mk.js -------------------------------------------------------------------------------- /plugins/find/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/mn.js -------------------------------------------------------------------------------- /plugins/find/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/ms.js -------------------------------------------------------------------------------- /plugins/find/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/nb.js -------------------------------------------------------------------------------- /plugins/find/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/nl.js -------------------------------------------------------------------------------- /plugins/find/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/no.js -------------------------------------------------------------------------------- /plugins/find/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/oc.js -------------------------------------------------------------------------------- /plugins/find/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/pl.js -------------------------------------------------------------------------------- /plugins/find/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/pt.js -------------------------------------------------------------------------------- /plugins/find/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/ro.js -------------------------------------------------------------------------------- /plugins/find/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/ru.js -------------------------------------------------------------------------------- /plugins/find/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/si.js -------------------------------------------------------------------------------- /plugins/find/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/sk.js -------------------------------------------------------------------------------- /plugins/find/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/sl.js -------------------------------------------------------------------------------- /plugins/find/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/sq.js -------------------------------------------------------------------------------- /plugins/find/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/sr.js -------------------------------------------------------------------------------- /plugins/find/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/sv.js -------------------------------------------------------------------------------- /plugins/find/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/th.js -------------------------------------------------------------------------------- /plugins/find/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/tr.js -------------------------------------------------------------------------------- /plugins/find/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/tt.js -------------------------------------------------------------------------------- /plugins/find/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/ug.js -------------------------------------------------------------------------------- /plugins/find/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/uk.js -------------------------------------------------------------------------------- /plugins/find/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/vi.js -------------------------------------------------------------------------------- /plugins/find/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/lang/zh.js -------------------------------------------------------------------------------- /plugins/find/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/find/plugin.js -------------------------------------------------------------------------------- /plugins/flash/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/flash/plugin.js -------------------------------------------------------------------------------- /plugins/font/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/af.js -------------------------------------------------------------------------------- /plugins/font/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/ar.js -------------------------------------------------------------------------------- /plugins/font/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/az.js -------------------------------------------------------------------------------- /plugins/font/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/bg.js -------------------------------------------------------------------------------- /plugins/font/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/bn.js -------------------------------------------------------------------------------- /plugins/font/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/bs.js -------------------------------------------------------------------------------- /plugins/font/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/ca.js -------------------------------------------------------------------------------- /plugins/font/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/cs.js -------------------------------------------------------------------------------- /plugins/font/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/cy.js -------------------------------------------------------------------------------- /plugins/font/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/da.js -------------------------------------------------------------------------------- /plugins/font/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/de.js -------------------------------------------------------------------------------- /plugins/font/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/el.js -------------------------------------------------------------------------------- /plugins/font/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/en.js -------------------------------------------------------------------------------- /plugins/font/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/eo.js -------------------------------------------------------------------------------- /plugins/font/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/es.js -------------------------------------------------------------------------------- /plugins/font/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/et.js -------------------------------------------------------------------------------- /plugins/font/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/eu.js -------------------------------------------------------------------------------- /plugins/font/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/fa.js -------------------------------------------------------------------------------- /plugins/font/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/fi.js -------------------------------------------------------------------------------- /plugins/font/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/fo.js -------------------------------------------------------------------------------- /plugins/font/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/fr.js -------------------------------------------------------------------------------- /plugins/font/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/gl.js -------------------------------------------------------------------------------- /plugins/font/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/gu.js -------------------------------------------------------------------------------- /plugins/font/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/he.js -------------------------------------------------------------------------------- /plugins/font/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/hi.js -------------------------------------------------------------------------------- /plugins/font/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/hr.js -------------------------------------------------------------------------------- /plugins/font/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/hu.js -------------------------------------------------------------------------------- /plugins/font/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/id.js -------------------------------------------------------------------------------- /plugins/font/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/is.js -------------------------------------------------------------------------------- /plugins/font/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/it.js -------------------------------------------------------------------------------- /plugins/font/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/ja.js -------------------------------------------------------------------------------- /plugins/font/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/ka.js -------------------------------------------------------------------------------- /plugins/font/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/km.js -------------------------------------------------------------------------------- /plugins/font/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/ko.js -------------------------------------------------------------------------------- /plugins/font/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/ku.js -------------------------------------------------------------------------------- /plugins/font/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/lt.js -------------------------------------------------------------------------------- /plugins/font/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/lv.js -------------------------------------------------------------------------------- /plugins/font/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/mk.js -------------------------------------------------------------------------------- /plugins/font/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/mn.js -------------------------------------------------------------------------------- /plugins/font/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/ms.js -------------------------------------------------------------------------------- /plugins/font/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/nb.js -------------------------------------------------------------------------------- /plugins/font/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/nl.js -------------------------------------------------------------------------------- /plugins/font/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/no.js -------------------------------------------------------------------------------- /plugins/font/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/oc.js -------------------------------------------------------------------------------- /plugins/font/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/pl.js -------------------------------------------------------------------------------- /plugins/font/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/pt.js -------------------------------------------------------------------------------- /plugins/font/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/ro.js -------------------------------------------------------------------------------- /plugins/font/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/ru.js -------------------------------------------------------------------------------- /plugins/font/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/si.js -------------------------------------------------------------------------------- /plugins/font/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/sk.js -------------------------------------------------------------------------------- /plugins/font/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/sl.js -------------------------------------------------------------------------------- /plugins/font/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/sq.js -------------------------------------------------------------------------------- /plugins/font/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/sr.js -------------------------------------------------------------------------------- /plugins/font/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/sv.js -------------------------------------------------------------------------------- /plugins/font/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/th.js -------------------------------------------------------------------------------- /plugins/font/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/tr.js -------------------------------------------------------------------------------- /plugins/font/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/tt.js -------------------------------------------------------------------------------- /plugins/font/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/ug.js -------------------------------------------------------------------------------- /plugins/font/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/uk.js -------------------------------------------------------------------------------- /plugins/font/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/vi.js -------------------------------------------------------------------------------- /plugins/font/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/lang/zh.js -------------------------------------------------------------------------------- /plugins/font/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/font/plugin.js -------------------------------------------------------------------------------- /plugins/format/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/format/plugin.js -------------------------------------------------------------------------------- /plugins/forms/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/af.js -------------------------------------------------------------------------------- /plugins/forms/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/ar.js -------------------------------------------------------------------------------- /plugins/forms/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/az.js -------------------------------------------------------------------------------- /plugins/forms/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/bg.js -------------------------------------------------------------------------------- /plugins/forms/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/bn.js -------------------------------------------------------------------------------- /plugins/forms/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/bs.js -------------------------------------------------------------------------------- /plugins/forms/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/ca.js -------------------------------------------------------------------------------- /plugins/forms/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/cs.js -------------------------------------------------------------------------------- /plugins/forms/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/cy.js -------------------------------------------------------------------------------- /plugins/forms/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/da.js -------------------------------------------------------------------------------- /plugins/forms/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/de.js -------------------------------------------------------------------------------- /plugins/forms/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/el.js -------------------------------------------------------------------------------- /plugins/forms/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/en.js -------------------------------------------------------------------------------- /plugins/forms/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/eo.js -------------------------------------------------------------------------------- /plugins/forms/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/es.js -------------------------------------------------------------------------------- /plugins/forms/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/et.js -------------------------------------------------------------------------------- /plugins/forms/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/eu.js -------------------------------------------------------------------------------- /plugins/forms/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/fa.js -------------------------------------------------------------------------------- /plugins/forms/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/fi.js -------------------------------------------------------------------------------- /plugins/forms/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/fo.js -------------------------------------------------------------------------------- /plugins/forms/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/fr.js -------------------------------------------------------------------------------- /plugins/forms/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/gl.js -------------------------------------------------------------------------------- /plugins/forms/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/gu.js -------------------------------------------------------------------------------- /plugins/forms/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/he.js -------------------------------------------------------------------------------- /plugins/forms/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/hi.js -------------------------------------------------------------------------------- /plugins/forms/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/hr.js -------------------------------------------------------------------------------- /plugins/forms/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/hu.js -------------------------------------------------------------------------------- /plugins/forms/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/id.js -------------------------------------------------------------------------------- /plugins/forms/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/is.js -------------------------------------------------------------------------------- /plugins/forms/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/it.js -------------------------------------------------------------------------------- /plugins/forms/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/ja.js -------------------------------------------------------------------------------- /plugins/forms/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/ka.js -------------------------------------------------------------------------------- /plugins/forms/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/km.js -------------------------------------------------------------------------------- /plugins/forms/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/ko.js -------------------------------------------------------------------------------- /plugins/forms/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/ku.js -------------------------------------------------------------------------------- /plugins/forms/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/lt.js -------------------------------------------------------------------------------- /plugins/forms/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/lv.js -------------------------------------------------------------------------------- /plugins/forms/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/mk.js -------------------------------------------------------------------------------- /plugins/forms/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/mn.js -------------------------------------------------------------------------------- /plugins/forms/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/ms.js -------------------------------------------------------------------------------- /plugins/forms/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/nb.js -------------------------------------------------------------------------------- /plugins/forms/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/nl.js -------------------------------------------------------------------------------- /plugins/forms/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/no.js -------------------------------------------------------------------------------- /plugins/forms/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/oc.js -------------------------------------------------------------------------------- /plugins/forms/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/pl.js -------------------------------------------------------------------------------- /plugins/forms/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/pt.js -------------------------------------------------------------------------------- /plugins/forms/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/ro.js -------------------------------------------------------------------------------- /plugins/forms/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/ru.js -------------------------------------------------------------------------------- /plugins/forms/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/si.js -------------------------------------------------------------------------------- /plugins/forms/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/sk.js -------------------------------------------------------------------------------- /plugins/forms/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/sl.js -------------------------------------------------------------------------------- /plugins/forms/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/sq.js -------------------------------------------------------------------------------- /plugins/forms/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/sr.js -------------------------------------------------------------------------------- /plugins/forms/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/sv.js -------------------------------------------------------------------------------- /plugins/forms/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/th.js -------------------------------------------------------------------------------- /plugins/forms/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/tr.js -------------------------------------------------------------------------------- /plugins/forms/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/tt.js -------------------------------------------------------------------------------- /plugins/forms/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/ug.js -------------------------------------------------------------------------------- /plugins/forms/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/uk.js -------------------------------------------------------------------------------- /plugins/forms/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/vi.js -------------------------------------------------------------------------------- /plugins/forms/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/lang/zh.js -------------------------------------------------------------------------------- /plugins/forms/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/forms/plugin.js -------------------------------------------------------------------------------- /plugins/iframe/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/iframe/plugin.js -------------------------------------------------------------------------------- /plugins/image/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/af.js -------------------------------------------------------------------------------- /plugins/image/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/ar.js -------------------------------------------------------------------------------- /plugins/image/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/az.js -------------------------------------------------------------------------------- /plugins/image/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/bg.js -------------------------------------------------------------------------------- /plugins/image/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/bn.js -------------------------------------------------------------------------------- /plugins/image/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/bs.js -------------------------------------------------------------------------------- /plugins/image/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/ca.js -------------------------------------------------------------------------------- /plugins/image/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/cs.js -------------------------------------------------------------------------------- /plugins/image/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/cy.js -------------------------------------------------------------------------------- /plugins/image/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/da.js -------------------------------------------------------------------------------- /plugins/image/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/de.js -------------------------------------------------------------------------------- /plugins/image/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/el.js -------------------------------------------------------------------------------- /plugins/image/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/en.js -------------------------------------------------------------------------------- /plugins/image/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/eo.js -------------------------------------------------------------------------------- /plugins/image/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/es.js -------------------------------------------------------------------------------- /plugins/image/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/et.js -------------------------------------------------------------------------------- /plugins/image/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/eu.js -------------------------------------------------------------------------------- /plugins/image/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/fa.js -------------------------------------------------------------------------------- /plugins/image/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/fi.js -------------------------------------------------------------------------------- /plugins/image/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/fo.js -------------------------------------------------------------------------------- /plugins/image/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/fr.js -------------------------------------------------------------------------------- /plugins/image/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/gl.js -------------------------------------------------------------------------------- /plugins/image/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/gu.js -------------------------------------------------------------------------------- /plugins/image/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/he.js -------------------------------------------------------------------------------- /plugins/image/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/hi.js -------------------------------------------------------------------------------- /plugins/image/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/hr.js -------------------------------------------------------------------------------- /plugins/image/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/hu.js -------------------------------------------------------------------------------- /plugins/image/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/id.js -------------------------------------------------------------------------------- /plugins/image/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/is.js -------------------------------------------------------------------------------- /plugins/image/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/it.js -------------------------------------------------------------------------------- /plugins/image/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/ja.js -------------------------------------------------------------------------------- /plugins/image/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/ka.js -------------------------------------------------------------------------------- /plugins/image/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/km.js -------------------------------------------------------------------------------- /plugins/image/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/ko.js -------------------------------------------------------------------------------- /plugins/image/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/ku.js -------------------------------------------------------------------------------- /plugins/image/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/lt.js -------------------------------------------------------------------------------- /plugins/image/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/lv.js -------------------------------------------------------------------------------- /plugins/image/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/mk.js -------------------------------------------------------------------------------- /plugins/image/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/mn.js -------------------------------------------------------------------------------- /plugins/image/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/ms.js -------------------------------------------------------------------------------- /plugins/image/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/nb.js -------------------------------------------------------------------------------- /plugins/image/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/nl.js -------------------------------------------------------------------------------- /plugins/image/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/no.js -------------------------------------------------------------------------------- /plugins/image/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/oc.js -------------------------------------------------------------------------------- /plugins/image/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/pl.js -------------------------------------------------------------------------------- /plugins/image/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/pt.js -------------------------------------------------------------------------------- /plugins/image/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/ro.js -------------------------------------------------------------------------------- /plugins/image/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/ru.js -------------------------------------------------------------------------------- /plugins/image/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/si.js -------------------------------------------------------------------------------- /plugins/image/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/sk.js -------------------------------------------------------------------------------- /plugins/image/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/sl.js -------------------------------------------------------------------------------- /plugins/image/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/sq.js -------------------------------------------------------------------------------- /plugins/image/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/sr.js -------------------------------------------------------------------------------- /plugins/image/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/sv.js -------------------------------------------------------------------------------- /plugins/image/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/th.js -------------------------------------------------------------------------------- /plugins/image/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/tr.js -------------------------------------------------------------------------------- /plugins/image/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/tt.js -------------------------------------------------------------------------------- /plugins/image/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/ug.js -------------------------------------------------------------------------------- /plugins/image/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/uk.js -------------------------------------------------------------------------------- /plugins/image/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/vi.js -------------------------------------------------------------------------------- /plugins/image/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/lang/zh.js -------------------------------------------------------------------------------- /plugins/image/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image/plugin.js -------------------------------------------------------------------------------- /plugins/image2/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/image2/plugin.js -------------------------------------------------------------------------------- /plugins/indent/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/indent/plugin.js -------------------------------------------------------------------------------- /plugins/link/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/af.js -------------------------------------------------------------------------------- /plugins/link/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/ar.js -------------------------------------------------------------------------------- /plugins/link/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/az.js -------------------------------------------------------------------------------- /plugins/link/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/bg.js -------------------------------------------------------------------------------- /plugins/link/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/bn.js -------------------------------------------------------------------------------- /plugins/link/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/bs.js -------------------------------------------------------------------------------- /plugins/link/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/ca.js -------------------------------------------------------------------------------- /plugins/link/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/cs.js -------------------------------------------------------------------------------- /plugins/link/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/cy.js -------------------------------------------------------------------------------- /plugins/link/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/da.js -------------------------------------------------------------------------------- /plugins/link/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/de.js -------------------------------------------------------------------------------- /plugins/link/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/el.js -------------------------------------------------------------------------------- /plugins/link/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/en.js -------------------------------------------------------------------------------- /plugins/link/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/eo.js -------------------------------------------------------------------------------- /plugins/link/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/es.js -------------------------------------------------------------------------------- /plugins/link/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/et.js -------------------------------------------------------------------------------- /plugins/link/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/eu.js -------------------------------------------------------------------------------- /plugins/link/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/fa.js -------------------------------------------------------------------------------- /plugins/link/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/fi.js -------------------------------------------------------------------------------- /plugins/link/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/fo.js -------------------------------------------------------------------------------- /plugins/link/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/fr.js -------------------------------------------------------------------------------- /plugins/link/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/gl.js -------------------------------------------------------------------------------- /plugins/link/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/gu.js -------------------------------------------------------------------------------- /plugins/link/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/he.js -------------------------------------------------------------------------------- /plugins/link/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/hi.js -------------------------------------------------------------------------------- /plugins/link/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/hr.js -------------------------------------------------------------------------------- /plugins/link/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/hu.js -------------------------------------------------------------------------------- /plugins/link/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/id.js -------------------------------------------------------------------------------- /plugins/link/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/is.js -------------------------------------------------------------------------------- /plugins/link/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/it.js -------------------------------------------------------------------------------- /plugins/link/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/ja.js -------------------------------------------------------------------------------- /plugins/link/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/ka.js -------------------------------------------------------------------------------- /plugins/link/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/km.js -------------------------------------------------------------------------------- /plugins/link/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/ko.js -------------------------------------------------------------------------------- /plugins/link/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/ku.js -------------------------------------------------------------------------------- /plugins/link/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/lt.js -------------------------------------------------------------------------------- /plugins/link/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/lv.js -------------------------------------------------------------------------------- /plugins/link/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/mk.js -------------------------------------------------------------------------------- /plugins/link/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/mn.js -------------------------------------------------------------------------------- /plugins/link/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/ms.js -------------------------------------------------------------------------------- /plugins/link/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/nb.js -------------------------------------------------------------------------------- /plugins/link/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/nl.js -------------------------------------------------------------------------------- /plugins/link/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/no.js -------------------------------------------------------------------------------- /plugins/link/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/oc.js -------------------------------------------------------------------------------- /plugins/link/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/pl.js -------------------------------------------------------------------------------- /plugins/link/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/pt.js -------------------------------------------------------------------------------- /plugins/link/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/ro.js -------------------------------------------------------------------------------- /plugins/link/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/ru.js -------------------------------------------------------------------------------- /plugins/link/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/si.js -------------------------------------------------------------------------------- /plugins/link/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/sk.js -------------------------------------------------------------------------------- /plugins/link/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/sl.js -------------------------------------------------------------------------------- /plugins/link/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/sq.js -------------------------------------------------------------------------------- /plugins/link/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/sr.js -------------------------------------------------------------------------------- /plugins/link/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/sv.js -------------------------------------------------------------------------------- /plugins/link/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/th.js -------------------------------------------------------------------------------- /plugins/link/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/tr.js -------------------------------------------------------------------------------- /plugins/link/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/tt.js -------------------------------------------------------------------------------- /plugins/link/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/ug.js -------------------------------------------------------------------------------- /plugins/link/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/uk.js -------------------------------------------------------------------------------- /plugins/link/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/vi.js -------------------------------------------------------------------------------- /plugins/link/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/lang/zh.js -------------------------------------------------------------------------------- /plugins/link/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/link/plugin.js -------------------------------------------------------------------------------- /plugins/list/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/af.js -------------------------------------------------------------------------------- /plugins/list/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/ar.js -------------------------------------------------------------------------------- /plugins/list/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/az.js -------------------------------------------------------------------------------- /plugins/list/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/bg.js -------------------------------------------------------------------------------- /plugins/list/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/bn.js -------------------------------------------------------------------------------- /plugins/list/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/bs.js -------------------------------------------------------------------------------- /plugins/list/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/ca.js -------------------------------------------------------------------------------- /plugins/list/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/cs.js -------------------------------------------------------------------------------- /plugins/list/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/cy.js -------------------------------------------------------------------------------- /plugins/list/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/da.js -------------------------------------------------------------------------------- /plugins/list/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/de.js -------------------------------------------------------------------------------- /plugins/list/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/el.js -------------------------------------------------------------------------------- /plugins/list/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/en.js -------------------------------------------------------------------------------- /plugins/list/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/eo.js -------------------------------------------------------------------------------- /plugins/list/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/es.js -------------------------------------------------------------------------------- /plugins/list/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/et.js -------------------------------------------------------------------------------- /plugins/list/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/eu.js -------------------------------------------------------------------------------- /plugins/list/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/fa.js -------------------------------------------------------------------------------- /plugins/list/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/fi.js -------------------------------------------------------------------------------- /plugins/list/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/fo.js -------------------------------------------------------------------------------- /plugins/list/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/fr.js -------------------------------------------------------------------------------- /plugins/list/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/gl.js -------------------------------------------------------------------------------- /plugins/list/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/gu.js -------------------------------------------------------------------------------- /plugins/list/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/he.js -------------------------------------------------------------------------------- /plugins/list/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/hi.js -------------------------------------------------------------------------------- /plugins/list/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/hr.js -------------------------------------------------------------------------------- /plugins/list/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/hu.js -------------------------------------------------------------------------------- /plugins/list/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/id.js -------------------------------------------------------------------------------- /plugins/list/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/is.js -------------------------------------------------------------------------------- /plugins/list/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/it.js -------------------------------------------------------------------------------- /plugins/list/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/ja.js -------------------------------------------------------------------------------- /plugins/list/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/ka.js -------------------------------------------------------------------------------- /plugins/list/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/km.js -------------------------------------------------------------------------------- /plugins/list/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/ko.js -------------------------------------------------------------------------------- /plugins/list/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/ku.js -------------------------------------------------------------------------------- /plugins/list/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/lt.js -------------------------------------------------------------------------------- /plugins/list/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/lv.js -------------------------------------------------------------------------------- /plugins/list/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/mk.js -------------------------------------------------------------------------------- /plugins/list/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/mn.js -------------------------------------------------------------------------------- /plugins/list/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/ms.js -------------------------------------------------------------------------------- /plugins/list/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/nb.js -------------------------------------------------------------------------------- /plugins/list/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/nl.js -------------------------------------------------------------------------------- /plugins/list/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/no.js -------------------------------------------------------------------------------- /plugins/list/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/oc.js -------------------------------------------------------------------------------- /plugins/list/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/pl.js -------------------------------------------------------------------------------- /plugins/list/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/pt.js -------------------------------------------------------------------------------- /plugins/list/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/ro.js -------------------------------------------------------------------------------- /plugins/list/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/ru.js -------------------------------------------------------------------------------- /plugins/list/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/si.js -------------------------------------------------------------------------------- /plugins/list/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/sk.js -------------------------------------------------------------------------------- /plugins/list/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/sl.js -------------------------------------------------------------------------------- /plugins/list/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/sq.js -------------------------------------------------------------------------------- /plugins/list/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/sr.js -------------------------------------------------------------------------------- /plugins/list/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/sv.js -------------------------------------------------------------------------------- /plugins/list/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/th.js -------------------------------------------------------------------------------- /plugins/list/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/tr.js -------------------------------------------------------------------------------- /plugins/list/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/tt.js -------------------------------------------------------------------------------- /plugins/list/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/ug.js -------------------------------------------------------------------------------- /plugins/list/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/uk.js -------------------------------------------------------------------------------- /plugins/list/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/vi.js -------------------------------------------------------------------------------- /plugins/list/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/lang/zh.js -------------------------------------------------------------------------------- /plugins/list/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/list/plugin.js -------------------------------------------------------------------------------- /plugins/menu/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/menu/plugin.js -------------------------------------------------------------------------------- /plugins/panel/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/panel/plugin.js -------------------------------------------------------------------------------- /plugins/popup/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/popup/plugin.js -------------------------------------------------------------------------------- /plugins/print/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/af.js -------------------------------------------------------------------------------- /plugins/print/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/ar.js -------------------------------------------------------------------------------- /plugins/print/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/az.js -------------------------------------------------------------------------------- /plugins/print/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/bg.js -------------------------------------------------------------------------------- /plugins/print/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/bn.js -------------------------------------------------------------------------------- /plugins/print/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/bs.js -------------------------------------------------------------------------------- /plugins/print/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/ca.js -------------------------------------------------------------------------------- /plugins/print/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/cs.js -------------------------------------------------------------------------------- /plugins/print/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/cy.js -------------------------------------------------------------------------------- /plugins/print/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/da.js -------------------------------------------------------------------------------- /plugins/print/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/de.js -------------------------------------------------------------------------------- /plugins/print/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/el.js -------------------------------------------------------------------------------- /plugins/print/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/en.js -------------------------------------------------------------------------------- /plugins/print/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/eo.js -------------------------------------------------------------------------------- /plugins/print/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/es.js -------------------------------------------------------------------------------- /plugins/print/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/et.js -------------------------------------------------------------------------------- /plugins/print/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/eu.js -------------------------------------------------------------------------------- /plugins/print/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/fa.js -------------------------------------------------------------------------------- /plugins/print/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/fi.js -------------------------------------------------------------------------------- /plugins/print/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/fo.js -------------------------------------------------------------------------------- /plugins/print/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/fr.js -------------------------------------------------------------------------------- /plugins/print/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/gl.js -------------------------------------------------------------------------------- /plugins/print/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/gu.js -------------------------------------------------------------------------------- /plugins/print/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/he.js -------------------------------------------------------------------------------- /plugins/print/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/hi.js -------------------------------------------------------------------------------- /plugins/print/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/hr.js -------------------------------------------------------------------------------- /plugins/print/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/hu.js -------------------------------------------------------------------------------- /plugins/print/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/id.js -------------------------------------------------------------------------------- /plugins/print/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/is.js -------------------------------------------------------------------------------- /plugins/print/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/it.js -------------------------------------------------------------------------------- /plugins/print/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/ja.js -------------------------------------------------------------------------------- /plugins/print/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/ka.js -------------------------------------------------------------------------------- /plugins/print/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/km.js -------------------------------------------------------------------------------- /plugins/print/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/ko.js -------------------------------------------------------------------------------- /plugins/print/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/ku.js -------------------------------------------------------------------------------- /plugins/print/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/lt.js -------------------------------------------------------------------------------- /plugins/print/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/lv.js -------------------------------------------------------------------------------- /plugins/print/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/mk.js -------------------------------------------------------------------------------- /plugins/print/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/mn.js -------------------------------------------------------------------------------- /plugins/print/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/ms.js -------------------------------------------------------------------------------- /plugins/print/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/nb.js -------------------------------------------------------------------------------- /plugins/print/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/nl.js -------------------------------------------------------------------------------- /plugins/print/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/no.js -------------------------------------------------------------------------------- /plugins/print/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/oc.js -------------------------------------------------------------------------------- /plugins/print/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/pl.js -------------------------------------------------------------------------------- /plugins/print/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/pt.js -------------------------------------------------------------------------------- /plugins/print/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/ro.js -------------------------------------------------------------------------------- /plugins/print/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/ru.js -------------------------------------------------------------------------------- /plugins/print/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/si.js -------------------------------------------------------------------------------- /plugins/print/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/sk.js -------------------------------------------------------------------------------- /plugins/print/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/sl.js -------------------------------------------------------------------------------- /plugins/print/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/sq.js -------------------------------------------------------------------------------- /plugins/print/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/sr.js -------------------------------------------------------------------------------- /plugins/print/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/sv.js -------------------------------------------------------------------------------- /plugins/print/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/th.js -------------------------------------------------------------------------------- /plugins/print/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/tr.js -------------------------------------------------------------------------------- /plugins/print/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/tt.js -------------------------------------------------------------------------------- /plugins/print/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/ug.js -------------------------------------------------------------------------------- /plugins/print/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/uk.js -------------------------------------------------------------------------------- /plugins/print/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/vi.js -------------------------------------------------------------------------------- /plugins/print/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/lang/zh.js -------------------------------------------------------------------------------- /plugins/print/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/print/plugin.js -------------------------------------------------------------------------------- /plugins/resize/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/resize/plugin.js -------------------------------------------------------------------------------- /plugins/save/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/af.js -------------------------------------------------------------------------------- /plugins/save/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/ar.js -------------------------------------------------------------------------------- /plugins/save/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/az.js -------------------------------------------------------------------------------- /plugins/save/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/bg.js -------------------------------------------------------------------------------- /plugins/save/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/bn.js -------------------------------------------------------------------------------- /plugins/save/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/bs.js -------------------------------------------------------------------------------- /plugins/save/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/ca.js -------------------------------------------------------------------------------- /plugins/save/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/cs.js -------------------------------------------------------------------------------- /plugins/save/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/cy.js -------------------------------------------------------------------------------- /plugins/save/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/da.js -------------------------------------------------------------------------------- /plugins/save/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/de.js -------------------------------------------------------------------------------- /plugins/save/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/el.js -------------------------------------------------------------------------------- /plugins/save/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/en.js -------------------------------------------------------------------------------- /plugins/save/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/eo.js -------------------------------------------------------------------------------- /plugins/save/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/es.js -------------------------------------------------------------------------------- /plugins/save/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/et.js -------------------------------------------------------------------------------- /plugins/save/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/eu.js -------------------------------------------------------------------------------- /plugins/save/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/fa.js -------------------------------------------------------------------------------- /plugins/save/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/fi.js -------------------------------------------------------------------------------- /plugins/save/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/fo.js -------------------------------------------------------------------------------- /plugins/save/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/fr.js -------------------------------------------------------------------------------- /plugins/save/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/gl.js -------------------------------------------------------------------------------- /plugins/save/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/gu.js -------------------------------------------------------------------------------- /plugins/save/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/he.js -------------------------------------------------------------------------------- /plugins/save/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/hi.js -------------------------------------------------------------------------------- /plugins/save/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/hr.js -------------------------------------------------------------------------------- /plugins/save/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/hu.js -------------------------------------------------------------------------------- /plugins/save/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/lang/id.js -------------------------------------------------------------------------------- /plugins/save/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/save/plugin.js -------------------------------------------------------------------------------- /plugins/tab/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/tab/plugin.js -------------------------------------------------------------------------------- /plugins/undo/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/undo/plugin.js -------------------------------------------------------------------------------- /plugins/xml/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/plugins/xml/plugin.js -------------------------------------------------------------------------------- /samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/samples/img/logo.png -------------------------------------------------------------------------------- /samples/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/samples/img/logo.svg -------------------------------------------------------------------------------- /samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/samples/index.html -------------------------------------------------------------------------------- /samples/js/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/samples/js/sample.js -------------------------------------------------------------------------------- /samples/js/sf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/samples/js/sf.js -------------------------------------------------------------------------------- /samples/old/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/samples/old/ajax.html -------------------------------------------------------------------------------- /samples/old/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/samples/old/api.html -------------------------------------------------------------------------------- /samples/old/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/samples/old/index.html -------------------------------------------------------------------------------- /samples/old/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/samples/old/sample.css -------------------------------------------------------------------------------- /samples/old/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/samples/old/sample.js -------------------------------------------------------------------------------- /skins/kama/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/kama/dialog.css -------------------------------------------------------------------------------- /skins/kama/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/kama/editor.css -------------------------------------------------------------------------------- /skins/kama/mainui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/kama/mainui.css -------------------------------------------------------------------------------- /skins/kama/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/kama/menu.css -------------------------------------------------------------------------------- /skins/kama/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/kama/panel.css -------------------------------------------------------------------------------- /skins/kama/presets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/kama/presets.css -------------------------------------------------------------------------------- /skins/kama/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/kama/readme.md -------------------------------------------------------------------------------- /skins/kama/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/kama/reset.css -------------------------------------------------------------------------------- /skins/kama/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/kama/skin.js -------------------------------------------------------------------------------- /skins/kama/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/kama/toolbar.css -------------------------------------------------------------------------------- /skins/moono/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/moono/dialog.css -------------------------------------------------------------------------------- /skins/moono/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/moono/editor.css -------------------------------------------------------------------------------- /skins/moono/mainui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/moono/mainui.css -------------------------------------------------------------------------------- /skins/moono/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/moono/menu.css -------------------------------------------------------------------------------- /skins/moono/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/moono/panel.css -------------------------------------------------------------------------------- /skins/moono/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/moono/readme.md -------------------------------------------------------------------------------- /skins/moono/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/moono/reset.css -------------------------------------------------------------------------------- /skins/moono/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/skins/moono/skin.js -------------------------------------------------------------------------------- /styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/styles.js -------------------------------------------------------------------------------- /tests/_assets/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/tests/_assets/cog.svg -------------------------------------------------------------------------------- /tests/_assets/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/tests/_assets/img.gif -------------------------------------------------------------------------------- /tests/_assets/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/tests/_assets/lena.jpg -------------------------------------------------------------------------------- /tests/_assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor4/HEAD/tests/_assets/logo.png -------------------------------------------------------------------------------- /tests/_assets/sample.css: -------------------------------------------------------------------------------- 1 | .sample 2 | { 3 | position: absolute; 4 | } 5 | -------------------------------------------------------------------------------- /tests/_assets/sample.txt: -------------------------------------------------------------------------------- 1 | Sample Text -------------------------------------------------------------------------------- /tests/core/creators/inline.html: -------------------------------------------------------------------------------- 1 |
Lorem ipsum
3 |