├── .babelrc ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── component-request.md │ └── feature_request.md ├── .gitignore ├── LICENSE.md ├── README.md ├── dist ├── css │ ├── keditor-components.css │ ├── keditor-components.css.map │ ├── keditor.css │ └── keditor.css.map └── js │ ├── keditor-components.js │ ├── keditor-components.js.map │ ├── keditor.js │ └── keditor.js.map ├── docs ├── configuration.md ├── contribute_a_component.md ├── custom_component.md ├── custom_container.md ├── dynamic_content.md ├── getting_started.md ├── methods.md └── support_touch_devices.md ├── examples ├── basic_with_blank_content.html ├── basic_with_content.html ├── css │ └── examples.css ├── custom_size.html ├── extra_settings.html ├── index.html ├── js │ └── examples.js ├── multi_content_area.html ├── plugins │ ├── bootstrap-3.4.1 │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── ckeditor-4.11.4 │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ └── en.js │ │ ├── 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 │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ ├── copyformatting │ │ │ │ ├── cursors │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ └── cursor.svg │ │ │ │ └── styles │ │ │ │ │ └── copyformatting.css │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── showblocks │ │ │ │ └── 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 │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableselection │ │ │ │ └── styles │ │ │ │ │ └── tableselection.css │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── widget │ │ │ │ └── images │ │ │ │ │ └── handle.png │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── wsc.css │ │ ├── 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 │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── datafiltering.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── tabindex.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── 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 │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ └── moono-lisa │ │ │ │ ├── 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 │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ └── styles.js │ ├── code-prettify │ │ ├── .gitignore │ │ ├── CHANGES.md │ │ ├── COPYING │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── distrib │ │ │ └── prettify-small.zip │ │ ├── docs │ │ │ └── getting_started.md │ │ ├── examples │ │ │ └── quine.html │ │ ├── js-modules │ │ │ ├── combinePrefixPatterns.js │ │ │ ├── defs.js │ │ │ ├── externs.js │ │ │ ├── extractSourceSpans.js │ │ │ ├── node_prettify.js │ │ │ ├── numberLines.js │ │ │ ├── prettify.js │ │ │ ├── recombineTagsAndDecorations.js │ │ │ ├── regexpPrecederPatterns.js │ │ │ ├── regexpPrecederPatterns.pl │ │ │ └── run_prettify.js │ │ ├── loader │ │ │ ├── lang-Splus.js │ │ │ ├── lang-aea.js │ │ │ ├── lang-agc.js │ │ │ ├── lang-apollo.js │ │ │ ├── lang-basic.js │ │ │ ├── lang-cbm.js │ │ │ ├── lang-cl.js │ │ │ ├── lang-clj.js │ │ │ ├── lang-css.js │ │ │ ├── lang-dart.js │ │ │ ├── lang-el.js │ │ │ ├── lang-erl.js │ │ │ ├── lang-erlang.js │ │ │ ├── lang-ex.js │ │ │ ├── lang-exs.js │ │ │ ├── lang-fs.js │ │ │ ├── lang-go.js │ │ │ ├── lang-hs.js │ │ │ ├── lang-kotlin.js │ │ │ ├── lang-lasso.js │ │ │ ├── lang-lassoscript.js │ │ │ ├── lang-latex.js │ │ │ ├── lang-lgt.js │ │ │ ├── lang-lisp.js │ │ │ ├── lang-ll.js │ │ │ ├── lang-llvm.js │ │ │ ├── lang-logtalk.js │ │ │ ├── lang-ls.js │ │ │ ├── lang-lsp.js │ │ │ ├── lang-lua.js │ │ │ ├── lang-matlab.js │ │ │ ├── lang-ml.js │ │ │ ├── lang-mumps.js │ │ │ ├── lang-n.js │ │ │ ├── lang-nemerle.js │ │ │ ├── lang-pascal.js │ │ │ ├── lang-proto.js │ │ │ ├── lang-r.js │ │ │ ├── lang-rd.js │ │ │ ├── lang-rkt.js │ │ │ ├── lang-rust.js │ │ │ ├── lang-s.js │ │ │ ├── lang-scala.js │ │ │ ├── lang-scm.js │ │ │ ├── lang-sql.js │ │ │ ├── lang-ss.js │ │ │ ├── lang-swift.js │ │ │ ├── lang-tcl.js │ │ │ ├── lang-tex.js │ │ │ ├── lang-vb.js │ │ │ ├── lang-vbs.js │ │ │ ├── lang-vhd.js │ │ │ ├── lang-vhdl.js │ │ │ ├── lang-wiki.js │ │ │ ├── lang-xq.js │ │ │ ├── lang-xquery.js │ │ │ ├── lang-yaml.js │ │ │ ├── lang-yml.js │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ ├── run_prettify.js │ │ │ └── skins │ │ │ │ ├── desert.css │ │ │ │ ├── doxy.css │ │ │ │ ├── sons-of-obsidian.css │ │ │ │ └── sunburst.css │ │ ├── package.json │ │ ├── src │ │ │ ├── lang-apollo.js │ │ │ ├── lang-basic.js │ │ │ ├── lang-clj.js │ │ │ ├── lang-css.js │ │ │ ├── lang-dart.js │ │ │ ├── lang-erlang.js │ │ │ ├── lang-ex.js │ │ │ ├── lang-go.js │ │ │ ├── lang-hs.js │ │ │ ├── lang-kotlin.js │ │ │ ├── lang-lasso.js │ │ │ ├── lang-lisp.js │ │ │ ├── lang-llvm.js │ │ │ ├── lang-logtalk.js │ │ │ ├── lang-lua.js │ │ │ ├── lang-matlab.js │ │ │ ├── lang-ml.js │ │ │ ├── lang-mumps.js │ │ │ ├── lang-n.js │ │ │ ├── lang-pascal.js │ │ │ ├── lang-proto.js │ │ │ ├── lang-r.js │ │ │ ├── lang-rd.js │ │ │ ├── lang-rust.js │ │ │ ├── lang-scala.js │ │ │ ├── lang-sql.js │ │ │ ├── lang-swift.js │ │ │ ├── lang-tcl.js │ │ │ ├── lang-tex.js │ │ │ ├── lang-vb.js │ │ │ ├── lang-vhdl.js │ │ │ ├── lang-wiki.js │ │ │ ├── lang-xq.js │ │ │ ├── lang-yaml.js │ │ │ ├── node_prettify.js │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ └── run_prettify.js │ │ ├── styles │ │ │ ├── demo.html │ │ │ ├── desert.css │ │ │ ├── doxy.css │ │ │ ├── index.html │ │ │ ├── sons-of-obsidian.css │ │ │ └── sunburst.css │ │ ├── tasks │ │ │ ├── aliases.js │ │ │ ├── gcc.js │ │ │ └── lib │ │ │ │ └── lang-aliases.js │ │ ├── tests │ │ │ ├── debug-ie-compat-matrix.html │ │ │ ├── extractSourceSpans_test.html │ │ │ ├── ie-newline-copy-paste.html │ │ │ ├── large_input_test.html │ │ │ ├── numberLines_test.html │ │ │ ├── prettify_test.html │ │ │ ├── prettify_test.js │ │ │ ├── prettify_test_2.html │ │ │ ├── prettify_test_2.js │ │ │ ├── recombineTagsAndDecorations_test.html │ │ │ ├── run_prettify_test.html │ │ │ ├── shims.js │ │ │ ├── test_base.js │ │ │ ├── test_in_node │ │ │ ├── test_modules.css │ │ │ └── test_styles.css │ │ └── tools │ │ │ └── closure-compiler │ │ │ ├── amd-externs.js │ │ │ └── console-externs.js │ ├── font-awesome-4.7.0 │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── formBuilder-2.5.3 │ │ ├── form-builder.min.js │ │ └── form-render.min.js │ ├── jquery-1.11.3 │ │ ├── jquery-1.11.3.js │ │ ├── jquery-1.11.3.min.js │ │ └── jquery-1.11.3.min.map │ ├── jquery-ui-1.12.1.custom │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── external │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ ├── index.html │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.structure.min.css │ │ └── package.json │ ├── jquery-ui.touch-punch-0.2.3 │ │ ├── jquery.ui.touch-punch.js │ │ └── jquery.ui.touch-punch.min.js │ └── js-beautify-1.7.5 │ │ ├── .codeclimate.yml │ │ ├── .gitignore │ │ ├── .jshintignore │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── bower.json │ │ ├── build │ │ ├── index.html │ │ ├── js │ │ ├── bin │ │ │ ├── css-beautify.js │ │ │ ├── html-beautify.js │ │ │ └── js-beautify.js │ │ ├── config │ │ │ └── defaults.json │ │ ├── index.js │ │ ├── lib │ │ │ ├── beautify-css.js │ │ │ ├── beautify-html.js │ │ │ ├── beautify.js │ │ │ ├── cli.js │ │ │ └── unpackers │ │ │ │ ├── javascriptobfuscator_unpacker.js │ │ │ │ ├── myobfuscate_unpacker.js │ │ │ │ ├── p_a_c_k_e_r_unpacker.js │ │ │ │ └── urlencode_unpacker.js │ │ ├── src │ │ │ ├── core │ │ │ │ ├── acorn.js │ │ │ │ ├── inputscanner.js │ │ │ │ ├── options.js │ │ │ │ ├── output.js │ │ │ │ └── token.js │ │ │ ├── css │ │ │ │ ├── beautifier.js │ │ │ │ └── index.js │ │ │ ├── html │ │ │ │ ├── beautifier.js │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── javascript │ │ │ │ ├── beautifier.js │ │ │ │ ├── index.js │ │ │ │ └── tokenizer.js │ │ └── test │ │ │ ├── amd-beautify-tests.js │ │ │ ├── generated │ │ │ ├── beautify-css-tests.js │ │ │ ├── beautify-html-tests.js │ │ │ └── beautify-javascript-tests.js │ │ │ ├── node-beautify-html-perf-tests.js │ │ │ ├── node-beautify-perf-tests.js │ │ │ ├── node-beautify-tests.js │ │ │ ├── requirejs-html-beautify.html │ │ │ ├── resources │ │ │ ├── configerror │ │ │ │ ├── .jsbeautifyrc │ │ │ │ └── subDir1 │ │ │ │ │ └── subDir2 │ │ │ │ │ └── empty.txt │ │ │ ├── editorconfig │ │ │ │ ├── .editorconfig │ │ │ │ ├── cr │ │ │ │ │ └── .editorconfig │ │ │ │ ├── crlf │ │ │ │ │ └── .editorconfig │ │ │ │ ├── error │ │ │ │ │ └── .editorconfig │ │ │ │ └── example-base.js │ │ │ ├── example1.js │ │ │ └── indent11chars │ │ │ │ ├── .jsbeautifyrc │ │ │ │ └── subDir1 │ │ │ │ └── subDir2 │ │ │ │ └── empty.txt │ │ │ ├── run-tests │ │ │ ├── sanitytest.js │ │ │ └── shell-smoke-test.sh │ │ ├── jsbeautifyrc │ │ ├── package.json │ │ ├── python │ │ ├── MANIFEST.in │ │ ├── cssbeautifier │ │ │ ├── __init__.py │ │ │ ├── css │ │ │ │ ├── __init__.py │ │ │ │ ├── beautifier.py │ │ │ │ └── options.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── generated │ │ │ │ ├── __init__.py │ │ │ │ └── tests.py │ │ ├── debian │ │ │ ├── .gitignore │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── rules │ │ │ └── source │ │ │ │ └── format │ │ ├── js-beautify │ │ ├── js-beautify-profile │ │ ├── js-beautify-test │ │ ├── js-beautify-test.py │ │ ├── jsbeautifier │ │ │ ├── __init__.py │ │ │ ├── __version__.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── acorn.py │ │ │ │ ├── inputscanner.py │ │ │ │ ├── options.py │ │ │ │ ├── output.py │ │ │ │ └── token.py │ │ │ ├── javascript │ │ │ │ ├── __init__.py │ │ │ │ ├── beautifier.py │ │ │ │ ├── options.py │ │ │ │ └── tokenizer.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── generated │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── tests.py │ │ │ │ ├── shell-smoke-test.sh │ │ │ │ ├── test-perf-jsbeautifier.py │ │ │ │ └── testindentation.py │ │ │ └── unpackers │ │ │ │ ├── README.specs.mkd │ │ │ │ ├── __init__.py │ │ │ │ ├── evalbased.py │ │ │ │ ├── javascriptobfuscator.py │ │ │ │ ├── myobfuscate.py │ │ │ │ ├── packer.py │ │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test-myobfuscate-input.js │ │ │ │ ├── test-myobfuscate-output.js │ │ │ │ ├── test-packer-62-input.js │ │ │ │ ├── test-packer-non62-input.js │ │ │ │ ├── testjavascriptobfuscator.py │ │ │ │ ├── testmyobfuscate.py │ │ │ │ ├── testpacker.py │ │ │ │ └── testurlencode.py │ │ │ │ └── urlencode.py │ │ └── setup.py │ │ ├── test │ │ ├── data │ │ │ ├── css │ │ │ │ ├── node.mustache │ │ │ │ ├── python.mustache │ │ │ │ └── tests.js │ │ │ ├── html │ │ │ │ ├── node.mustache │ │ │ │ └── tests.js │ │ │ └── javascript │ │ │ │ ├── inputlib.js │ │ │ │ ├── node.mustache │ │ │ │ ├── python.mustache │ │ │ │ └── tests.js │ │ ├── generate-tests.js │ │ └── resources │ │ │ ├── html-with-base64image.html │ │ │ ├── underscore-min.js │ │ │ └── underscore.js │ │ ├── tools │ │ ├── build.sh │ │ ├── generate-changelog.sh │ │ ├── git-status-clear.sh │ │ ├── release-all.sh │ │ └── template │ │ │ ├── beautify-css.begin.js │ │ │ ├── beautify-css.end.js │ │ │ ├── beautify-html.begin.js │ │ │ ├── beautify-html.end.js │ │ │ ├── beautify.begin.js │ │ │ └── beautify.end.js │ │ ├── web │ │ ├── favicon.png │ │ └── third-party │ │ │ ├── codemirror │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ └── mode │ │ │ │ └── javascript │ │ │ │ ├── index.html │ │ │ │ ├── javascript.js │ │ │ │ ├── test.js │ │ │ │ └── typescript.html │ │ │ └── jquery │ │ │ ├── jquery.cookie.js │ │ │ └── jquery.js │ │ └── webpack.config.js ├── settings_for_container.html ├── snippets │ ├── dynamic_content.html │ ├── img │ │ ├── somewhere_bangladesh.jpg │ │ ├── somewhere_bangladesh_squared.jpg │ │ ├── sydney_australia.jpg │ │ ├── sydney_australia_squared.jpg │ │ ├── wellington_newzealand.jpg │ │ ├── wellington_newzealand_squared.jpg │ │ ├── yenbai_vietnam.jpg │ │ └── yenbai_vietnam_squared.jpg │ ├── preview │ │ ├── articles_list.png │ │ ├── audio.png │ │ ├── featured_article.png │ │ ├── form.png │ │ ├── googlemap.png │ │ ├── heading_1.png │ │ ├── heading_2.png │ │ ├── jumbotron.png │ │ ├── media_panel.png │ │ ├── page_header.png │ │ ├── photo.png │ │ ├── row_12.png │ │ ├── row_3_3_3_3.png │ │ ├── row_3_6_3.png │ │ ├── row_4_4_4.png │ │ ├── row_4_8.png │ │ ├── row_6_6.png │ │ ├── row_8_4.png │ │ ├── text.png │ │ ├── thumbnail_panel.png │ │ ├── video.png │ │ ├── vimeo.png │ │ └── youtube.png │ └── snippets.html └── support_touch_device.html ├── index.html ├── package.json ├── src ├── components │ ├── index.js │ ├── keditor-component-audio.js │ ├── keditor-component-form.js │ ├── keditor-component-googlemap.js │ ├── keditor-component-photo.js │ ├── keditor-component-text.js │ ├── keditor-component-video.js │ ├── keditor-component-vimeo.js │ └── keditor-component-youtube.js ├── keditor │ ├── component │ │ ├── convertToComponent.js │ │ ├── deleteComponent.js │ │ ├── getComponentContent.js │ │ ├── getComponentType.js │ │ ├── initComponent.js │ │ └── initDynamicContent.js │ ├── constants │ │ ├── actionType.js │ │ ├── cssClass.js │ │ ├── defaults.js │ │ ├── deviceMode.js │ │ ├── icon.js │ │ ├── keyMap.js │ │ ├── settingCategory.js │ │ └── toolbarType.js │ ├── container │ │ ├── convertToContainer.js │ │ ├── getContainerContent.js │ │ ├── initColumnResizer.js │ │ ├── initContainer.js │ │ └── initContainerContent.js │ ├── contentArea │ │ ├── initContentArea.js │ │ └── initContentAreas.js │ ├── destroy.js │ ├── getContent.js │ ├── iframe │ │ ├── initBtnAddContentAfterComponent.js │ │ ├── initBtnAddContentAfterContainer.js │ │ ├── initBtnComponentCopy.js │ │ ├── initBtnComponentCut.js │ │ ├── initBtnComponentDelete.js │ │ ├── initBtnComponentDuplicate.js │ │ ├── initBtnComponentMoveDown.js │ │ ├── initBtnComponentMoveUp.js │ │ ├── initBtnComponentSetting.js │ │ ├── initBtnContainerCopy.js │ │ ├── initBtnContainerCut.js │ │ ├── initBtnContainerDelete.js │ │ ├── initBtnContainerDuplicate.js │ │ ├── initBtnContainerMoveDown.js │ │ ├── initBtnContainerMoveUp.js │ │ ├── initBtnContainerSetting.js │ │ ├── initBtnPasteContent.js │ │ ├── initIframe.js │ │ ├── initIframeActions.js │ │ ├── initIframeCover.js │ │ ├── initKeyDownAction.js │ │ └── initSelectAction.js │ ├── index.js │ ├── init.js │ ├── modal │ │ ├── hideModal.js │ │ ├── hideSnippetModal.js │ │ ├── initModal.js │ │ ├── initSnippetAction.js │ │ ├── initSnippetsModal.js │ │ ├── showModal.js │ │ └── showSnippetModal.js │ ├── setContent.js │ ├── sidebar │ │ ├── closeSidebar.js │ │ ├── initExtraSettings.js │ │ ├── initSettingForm.js │ │ ├── initSidebar.js │ │ ├── openSidebar.js │ │ └── showSettingForm.js │ ├── snippet │ │ ├── addSnippet.js │ │ ├── addSnippetToTarget.js │ │ ├── beautifyCategories.js │ │ ├── initSnippetsFilter.js │ │ ├── renderSnippet.js │ │ ├── renderSnippetFilter.js │ │ └── renderSnippets.js │ ├── topbar │ │ ├── initDeviceSwitcher.js │ │ ├── initFullscreenAction.js │ │ ├── initPreviewAction.js │ │ ├── initSaveAction.js │ │ ├── initTopbar.js │ │ ├── initTopbarExtraItems.js │ │ ├── initTopbarRightActions.js │ │ ├── setFullscreenMode.js │ │ └── switchDevice.js │ └── utils │ │ ├── enterFullscreen.js │ │ ├── error.js │ │ ├── exitFullscreen.js │ │ ├── generateId.js │ │ ├── generateToolbar.js │ │ ├── getClickedElement.js │ │ ├── getDataAttributes.js │ │ ├── log.js │ │ └── setCopyContent.js └── styles │ ├── _mixins.less │ ├── _variables.less │ ├── keditor-component-form.less │ ├── keditor-component-text.less │ ├── keditor.less │ └── keditor │ ├── _body.less │ ├── _button.less │ ├── _component.less │ ├── _container.less │ ├── _content-area.less │ ├── _iframe.less │ ├── _jquery-ui.less │ ├── _modal.less │ ├── _paste.less │ ├── _preview.less │ ├── _sidebar.less │ ├── _snippet.less │ ├── _toolbar.less │ ├── _topbar.less │ ├── _ui.less │ ├── _utilities.less │ └── _wrapper.less ├── tools └── publishNewVersion │ └── index.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/component-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/.github/ISSUE_TEMPLATE/component-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | *.iml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/README.md -------------------------------------------------------------------------------- /dist/css/keditor-components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/dist/css/keditor-components.css -------------------------------------------------------------------------------- /dist/css/keditor-components.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/dist/css/keditor-components.css.map -------------------------------------------------------------------------------- /dist/css/keditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/dist/css/keditor.css -------------------------------------------------------------------------------- /dist/css/keditor.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/dist/css/keditor.css.map -------------------------------------------------------------------------------- /dist/js/keditor-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/dist/js/keditor-components.js -------------------------------------------------------------------------------- /dist/js/keditor-components.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/dist/js/keditor-components.js.map -------------------------------------------------------------------------------- /dist/js/keditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/dist/js/keditor.js -------------------------------------------------------------------------------- /dist/js/keditor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/dist/js/keditor.js.map -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contribute_a_component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/docs/contribute_a_component.md -------------------------------------------------------------------------------- /docs/custom_component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/docs/custom_component.md -------------------------------------------------------------------------------- /docs/custom_container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/docs/custom_container.md -------------------------------------------------------------------------------- /docs/dynamic_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/docs/dynamic_content.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/docs/methods.md -------------------------------------------------------------------------------- /docs/support_touch_devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/docs/support_touch_devices.md -------------------------------------------------------------------------------- /examples/basic_with_blank_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/basic_with_blank_content.html -------------------------------------------------------------------------------- /examples/basic_with_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/basic_with_content.html -------------------------------------------------------------------------------- /examples/css/examples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/css/examples.css -------------------------------------------------------------------------------- /examples/custom_size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/custom_size.html -------------------------------------------------------------------------------- /examples/extra_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/extra_settings.html -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/js/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/js/examples.js -------------------------------------------------------------------------------- /examples/multi_content_area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/multi_content_area.html -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/css/bootstrap-theme.css -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/css/bootstrap.css -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/css/bootstrap.css.map -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/css/bootstrap.min.css -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/js/bootstrap.js -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/js/bootstrap.min.js -------------------------------------------------------------------------------- /examples/plugins/bootstrap-3.4.1/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/bootstrap-3.4.1/js/npm.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/CHANGES.md -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/LICENSE.md -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/README.md -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/adapters/jquery.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/build-config.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/ckeditor.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/config.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/contents.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/lang/en.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/a11yhelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/a11yhelp.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/af.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ar.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/az.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/bg.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ca.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/cs.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/cy.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/da.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/de-ch.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/de.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/el.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/en-au.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/en-gb.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/en.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/eo.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/es-mx.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/es.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/et.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/eu.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/fa.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/fi.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/fo.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/fr-ca.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/fr.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/gl.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/gu.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/he.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/hi.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/hr.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/hu.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/id.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/it.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ja.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/km.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ko.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ku.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/lt.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/lv.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/mk.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/mn.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/nb.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/nl.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/no.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/oc.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/pl.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/pt-br.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/pt.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ro.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ru.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/si.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/sk.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/sl.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/sq.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/sr.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/sv.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/th.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/tr.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/tt.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/ug.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/uk.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/vi.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/zh-cn.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/a11yhelp/dialogs/lang/zh.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/about/dialogs/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/about/dialogs/about.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/clipboard/dialogs/paste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/clipboard/dialogs/paste.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/dialog/dialogDefinition.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/div/dialogs/div.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/div/dialogs/div.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/find/dialogs/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/find/dialogs/find.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/flash/dialogs/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/flash/dialogs/flash.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/button.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/checkbox.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/form.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/hiddenfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/hiddenfield.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/radio.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/select.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/textarea.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/textfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/forms/dialogs/textfield.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/icons.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/iframe/dialogs/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/iframe/dialogs/iframe.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/image/dialogs/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/image/dialogs/image.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/link/dialogs/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/link/dialogs/anchor.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/link/dialogs/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/link/dialogs/link.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/liststyle/dialogs/liststyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/liststyle/dialogs/liststyle.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/preview/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/preview/preview.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/scayt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/scayt/CHANGELOG.md -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/scayt/LICENSE.md -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/scayt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/scayt/README.md -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/scayt/dialogs/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/scayt/dialogs/dialog.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/scayt/dialogs/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/scayt/dialogs/options.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/scayt/dialogs/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/scayt/dialogs/toolbar.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/dialogs/smiley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/dialogs/smiley.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/af.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ar.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/az.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/bg.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ca.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/cs.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/cy.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/da.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/de.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/el.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/en.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/eo.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/es.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/et.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/eu.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/fa.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/fi.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/fr.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/gl.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/he.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/hr.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/hu.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/id.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/it.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ja.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/km.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ko.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ku.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/lt.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/lv.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/nb.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/nl.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/no.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/oc.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/pl.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/pt.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ro.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ru.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/si.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/sk.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/sl.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/sq.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/sr.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/sv.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/th.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/tr.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/tt.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/ug.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/uk.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/vi.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/specialchar/dialogs/lang/zh.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/table/dialogs/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/table/dialogs/table.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/templates/dialogs/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/templates/dialogs/templates.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/templates/templates/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/templates/templates/default.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/wsc/LICENSE.md -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/wsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/wsc/README.md -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/wsc/dialogs/ciframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/wsc/dialogs/ciframe.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/wsc/dialogs/tmpFrameset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/wsc/dialogs/tmpFrameset.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/wsc/dialogs/wsc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/wsc/dialogs/wsc.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/wsc/dialogs/wsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/wsc/dialogs/wsc.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/wsc/dialogs/wsc_ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/wsc/dialogs/wsc_ie.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/plugins/wsc/skins/moono-lisa/wsc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/plugins/wsc/skins/moono-lisa/wsc.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/css/samples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/css/samples.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/img/github-top.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/img/header-bg.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/img/header-separator.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/img/logo.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/img/logo.svg -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/index.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/js/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/js/sample.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/js/sf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/js/sf.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/ajax.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/api.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/appendto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/appendto.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/assets/posteddata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/assets/posteddata.php -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/datafiltering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/datafiltering.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/dialog/assets/my_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/dialog/assets/my_dialog.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/dialog/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/dialog/dialog.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/divreplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/divreplace.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/enterkey/enterkey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/enterkey/enterkey.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/htmlwriter/outputhtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/htmlwriter/outputhtml.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/index.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/inlineall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/inlineall.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/inlinebycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/inlinebycode.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/inlinetextarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/inlinetextarea.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/jquery.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/magicline/magicline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/magicline/magicline.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/readonly.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/replacebyclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/replacebyclass.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/replacebycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/replacebycode.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/sample.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/sample.js -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/sample_posteddata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/sample_posteddata.php -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/tabindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/tabindex.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/toolbar/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/toolbar/toolbar.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/uicolor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/uicolor.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/uilanguages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/uilanguages.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/wysiwygarea/fullpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/wysiwygarea/fullpage.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/old/xhtmlstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/old/xhtmlstyle.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/samples/toolbarconfigurator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/samples/toolbarconfigurator/index.html -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/dialog.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/dialog_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/dialog_ie.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/dialog_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/dialog_ie8.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/dialog_iequirks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/dialog_iequirks.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/editor.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/editor_gecko.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/editor_gecko.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/editor_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/editor_ie.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/editor_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/editor_ie8.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/editor_iequirks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/editor_iequirks.css -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/skins/moono-lisa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/skins/moono-lisa/readme.md -------------------------------------------------------------------------------- /examples/plugins/ckeditor-4.11.4/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/ckeditor-4.11.4/styles.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/.gitignore -------------------------------------------------------------------------------- /examples/plugins/code-prettify/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/CHANGES.md -------------------------------------------------------------------------------- /examples/plugins/code-prettify/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/COPYING -------------------------------------------------------------------------------- /examples/plugins/code-prettify/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/Gruntfile.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/README.md -------------------------------------------------------------------------------- /examples/plugins/code-prettify/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/bower.json -------------------------------------------------------------------------------- /examples/plugins/code-prettify/distrib/prettify-small.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/distrib/prettify-small.zip -------------------------------------------------------------------------------- /examples/plugins/code-prettify/docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/docs/getting_started.md -------------------------------------------------------------------------------- /examples/plugins/code-prettify/examples/quine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/examples/quine.html -------------------------------------------------------------------------------- /examples/plugins/code-prettify/js-modules/combinePrefixPatterns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/js-modules/combinePrefixPatterns.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/js-modules/defs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/js-modules/defs.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/js-modules/externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/js-modules/externs.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/js-modules/extractSourceSpans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/js-modules/extractSourceSpans.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/js-modules/node_prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/js-modules/node_prettify.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/js-modules/numberLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/js-modules/numberLines.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/js-modules/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/js-modules/prettify.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/js-modules/regexpPrecederPatterns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/js-modules/regexpPrecederPatterns.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/js-modules/regexpPrecederPatterns.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/js-modules/regexpPrecederPatterns.pl -------------------------------------------------------------------------------- /examples/plugins/code-prettify/js-modules/run_prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/js-modules/run_prettify.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-Splus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-Splus.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-aea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-aea.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-agc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-agc.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-apollo.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-basic.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-cbm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-cbm.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-cl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-cl.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-clj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-clj.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-css.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-dart.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-el.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-erl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-erl.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-erlang.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-ex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-ex.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-exs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-exs.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-fs.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-go.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-hs.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-kotlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-kotlin.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-lasso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-lasso.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-lassoscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-lassoscript.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-latex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-latex.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-lgt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-lgt.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-lisp.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-ll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-ll.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-llvm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-llvm.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-logtalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-logtalk.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-ls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-ls.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-lsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-lsp.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-lua.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-matlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-matlab.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-ml.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-mumps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-mumps.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-n.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-nemerle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-nemerle.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-pascal.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-proto.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-r.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-rd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-rd.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-rkt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-rkt.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-rust.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-s.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-s.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-scala.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-scm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-scm.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-sql.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-ss.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-swift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-swift.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-tcl.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-tex.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-vb.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-vbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-vbs.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-vhd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-vhd.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-vhdl.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-wiki.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-xq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-xq.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-xquery.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-yaml.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/lang-yml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/lang-yml.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/prettify.css -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/prettify.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/run_prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/run_prettify.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/skins/desert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/skins/desert.css -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/skins/doxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/skins/doxy.css -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/skins/sons-of-obsidian.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/skins/sons-of-obsidian.css -------------------------------------------------------------------------------- /examples/plugins/code-prettify/loader/skins/sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/loader/skins/sunburst.css -------------------------------------------------------------------------------- /examples/plugins/code-prettify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/package.json -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-apollo.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-basic.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-clj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-clj.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-css.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-dart.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-erlang.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-ex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-ex.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-go.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-hs.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-kotlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-kotlin.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-lasso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-lasso.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-lisp.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-llvm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-llvm.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-logtalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-logtalk.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-lua.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-matlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-matlab.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-ml.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-mumps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-mumps.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-n.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-pascal.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-proto.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-r.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-rd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-rd.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-rust.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-scala.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-sql.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-swift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-swift.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-tcl.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-tex.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-vb.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-vhdl.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-wiki.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-xq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-xq.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/lang-yaml.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/node_prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/node_prettify.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/prettify.css -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/prettify.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/src/run_prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/src/run_prettify.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/styles/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/styles/demo.html -------------------------------------------------------------------------------- /examples/plugins/code-prettify/styles/desert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/styles/desert.css -------------------------------------------------------------------------------- /examples/plugins/code-prettify/styles/doxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/styles/doxy.css -------------------------------------------------------------------------------- /examples/plugins/code-prettify/styles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/styles/index.html -------------------------------------------------------------------------------- /examples/plugins/code-prettify/styles/sons-of-obsidian.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/styles/sons-of-obsidian.css -------------------------------------------------------------------------------- /examples/plugins/code-prettify/styles/sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/styles/sunburst.css -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tasks/aliases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tasks/aliases.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tasks/gcc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tasks/gcc.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tasks/lib/lang-aliases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tasks/lib/lang-aliases.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/debug-ie-compat-matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/debug-ie-compat-matrix.html -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/extractSourceSpans_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/extractSourceSpans_test.html -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/ie-newline-copy-paste.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/ie-newline-copy-paste.html -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/large_input_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/large_input_test.html -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/numberLines_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/numberLines_test.html -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/prettify_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/prettify_test.html -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/prettify_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/prettify_test.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/prettify_test_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/prettify_test_2.html -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/prettify_test_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/prettify_test_2.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/run_prettify_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/run_prettify_test.html -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/shims.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/test_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/test_base.js -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/test_in_node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/test_in_node -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/test_modules.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/test_modules.css -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tests/test_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tests/test_styles.css -------------------------------------------------------------------------------- /examples/plugins/code-prettify/tools/closure-compiler/amd-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/code-prettify/tools/closure-compiler/amd-externs.js -------------------------------------------------------------------------------- /examples/plugins/font-awesome-4.7.0/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/font-awesome-4.7.0/css/font-awesome.css -------------------------------------------------------------------------------- /examples/plugins/font-awesome-4.7.0/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/font-awesome-4.7.0/css/font-awesome.min.css -------------------------------------------------------------------------------- /examples/plugins/font-awesome-4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/font-awesome-4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /examples/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /examples/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /examples/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /examples/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /examples/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /examples/plugins/formBuilder-2.5.3/form-builder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/formBuilder-2.5.3/form-builder.min.js -------------------------------------------------------------------------------- /examples/plugins/formBuilder-2.5.3/form-render.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/formBuilder-2.5.3/form-render.min.js -------------------------------------------------------------------------------- /examples/plugins/jquery-1.11.3/jquery-1.11.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-1.11.3/jquery-1.11.3.js -------------------------------------------------------------------------------- /examples/plugins/jquery-1.11.3/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-1.11.3/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /examples/plugins/jquery-1.11.3/jquery-1.11.3.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-1.11.3/jquery-1.11.3.min.map -------------------------------------------------------------------------------- /examples/plugins/jquery-ui-1.12.1.custom/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-ui-1.12.1.custom/AUTHORS.txt -------------------------------------------------------------------------------- /examples/plugins/jquery-ui-1.12.1.custom/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-ui-1.12.1.custom/LICENSE.txt -------------------------------------------------------------------------------- /examples/plugins/jquery-ui-1.12.1.custom/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-ui-1.12.1.custom/external/jquery/jquery.js -------------------------------------------------------------------------------- /examples/plugins/jquery-ui-1.12.1.custom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-ui-1.12.1.custom/index.html -------------------------------------------------------------------------------- /examples/plugins/jquery-ui-1.12.1.custom/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-ui-1.12.1.custom/jquery-ui.css -------------------------------------------------------------------------------- /examples/plugins/jquery-ui-1.12.1.custom/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-ui-1.12.1.custom/jquery-ui.js -------------------------------------------------------------------------------- /examples/plugins/jquery-ui-1.12.1.custom/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-ui-1.12.1.custom/jquery-ui.min.css -------------------------------------------------------------------------------- /examples/plugins/jquery-ui-1.12.1.custom/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-ui-1.12.1.custom/jquery-ui.min.js -------------------------------------------------------------------------------- /examples/plugins/jquery-ui-1.12.1.custom/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-ui-1.12.1.custom/jquery-ui.structure.css -------------------------------------------------------------------------------- /examples/plugins/jquery-ui-1.12.1.custom/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-ui-1.12.1.custom/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /examples/plugins/jquery-ui-1.12.1.custom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-ui-1.12.1.custom/package.json -------------------------------------------------------------------------------- /examples/plugins/jquery-ui.touch-punch-0.2.3/jquery.ui.touch-punch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/jquery-ui.touch-punch-0.2.3/jquery.ui.touch-punch.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/.codeclimate.yml -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/.gitignore -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/.jshintignore -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/.jshintrc -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/.npmignore -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/.travis.yml -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/CHANGELOG.md -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/CONTRIBUTING.md -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/LICENSE -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/README.md -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/appveyor.yml -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/bower.json -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/build -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/index.html -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/bin/css-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/bin/css-beautify.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/bin/html-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/bin/html-beautify.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/bin/js-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/bin/js-beautify.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/config/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/config/defaults.json -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/index.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/lib/beautify-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/lib/beautify-css.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/lib/beautify-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/lib/beautify-html.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/lib/beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/lib/beautify.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/lib/cli.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/core/acorn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/core/acorn.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/core/inputscanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/core/inputscanner.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/core/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/core/options.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/core/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/core/output.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/core/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/core/token.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/css/beautifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/css/beautifier.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/css/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/css/index.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/html/beautifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/html/beautifier.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/html/index.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/index.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/javascript/beautifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/javascript/beautifier.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/javascript/index.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/src/javascript/tokenizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/src/javascript/tokenizer.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/amd-beautify-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/test/amd-beautify-tests.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/node-beautify-perf-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/test/node-beautify-perf-tests.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/node-beautify-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/test/node-beautify-tests.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/requirejs-html-beautify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/test/requirejs-html-beautify.html -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/resources/configerror/subDir1/subDir2/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/resources/editorconfig/cr/.editorconfig: -------------------------------------------------------------------------------- 1 | 2 | [*.js] 3 | end_of_line = cr 4 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/resources/editorconfig/crlf/.editorconfig: -------------------------------------------------------------------------------- 1 | 2 | [*.js] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/resources/editorconfig/error/.editorconfig: -------------------------------------------------------------------------------- 1 | Random stuff in here to cause parse error 2 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/resources/example1.js: -------------------------------------------------------------------------------- 1 | function indentMe() { 2 | "no, me!"; 3 | } 4 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/resources/indent11chars/subDir1/subDir2/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/test/run-tests -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/sanitytest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/test/sanitytest.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/js/test/shell-smoke-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/js/test/shell-smoke-test.sh -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/jsbeautifyrc -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/package.json -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/MANIFEST.in -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/cssbeautifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/cssbeautifier/__init__.py -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/cssbeautifier/css/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file :) 2 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/cssbeautifier/css/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/cssbeautifier/css/options.py -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/cssbeautifier/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file :) 2 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/cssbeautifier/tests/generated/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file :) 2 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/debian/.gitignore -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/debian/changelog -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/debian/control -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/debian/rules -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/js-beautify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/js-beautify -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/js-beautify-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/js-beautify-profile -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/js-beautify-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/js-beautify-test -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/js-beautify-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/js-beautify-test.py -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/jsbeautifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/jsbeautifier/__init__.py -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/jsbeautifier/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.7.5' 2 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/jsbeautifier/core/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file :) 2 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/jsbeautifier/core/acorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/jsbeautifier/core/acorn.py -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/jsbeautifier/core/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/jsbeautifier/core/options.py -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/jsbeautifier/core/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/jsbeautifier/core/output.py -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/jsbeautifier/core/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/jsbeautifier/core/token.py -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/jsbeautifier/javascript/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file :) 2 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/jsbeautifier/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file :) 2 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/jsbeautifier/tests/generated/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file :) 2 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/jsbeautifier/unpackers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file :) 2 | # pylint: disable=C0111 3 | -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/python/setup.py -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/test/data/css/node.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/test/data/css/node.mustache -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/test/data/css/python.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/test/data/css/python.mustache -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/test/data/css/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/test/data/css/tests.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/test/data/html/node.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/test/data/html/node.mustache -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/test/data/html/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/test/data/html/tests.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/test/data/javascript/inputlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/test/data/javascript/inputlib.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/test/data/javascript/node.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/test/data/javascript/node.mustache -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/test/data/javascript/python.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/test/data/javascript/python.mustache -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/test/data/javascript/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/test/data/javascript/tests.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/test/generate-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/test/generate-tests.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/test/resources/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/test/resources/underscore-min.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/test/resources/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/test/resources/underscore.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/tools/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/tools/build.sh -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/tools/generate-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/tools/generate-changelog.sh -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/tools/git-status-clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/tools/git-status-clear.sh -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/tools/release-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/tools/release-all.sh -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/tools/template/beautify-css.begin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/tools/template/beautify-css.begin.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/tools/template/beautify-css.end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/tools/template/beautify-css.end.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/tools/template/beautify-html.end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/tools/template/beautify-html.end.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/tools/template/beautify.begin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/tools/template/beautify.begin.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/tools/template/beautify.end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/tools/template/beautify.end.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/web/favicon.png -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/web/third-party/codemirror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/web/third-party/codemirror/LICENSE -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/web/third-party/codemirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/web/third-party/codemirror/README.md -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/web/third-party/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/web/third-party/jquery/jquery.js -------------------------------------------------------------------------------- /examples/plugins/js-beautify-1.7.5/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/plugins/js-beautify-1.7.5/webpack.config.js -------------------------------------------------------------------------------- /examples/settings_for_container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kademi/keditor/HEAD/examples/settings_for_container.html -------------------------------------------------------------------------------- /examples/snippets/dynamic_content.html: -------------------------------------------------------------------------------- 1 |