gitextract_ml_8nko7/ ├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE.md │ └── workflows/ │ ├── lint.yml │ └── website.yml ├── .gitignore ├── .jshintrc ├── .npmignore ├── BACKERS.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── bower.json ├── docs/ │ ├── .gitignore │ ├── .jshintrc │ ├── css/ │ │ └── main.css │ ├── demos/ │ │ ├── core/ │ │ │ ├── dark-theme.html │ │ │ ├── default.html │ │ │ └── simple.html │ │ ├── index.html │ │ ├── js/ │ │ │ ├── highlight.js │ │ │ ├── loader.js │ │ │ └── runExampleCode.js │ │ └── plugins/ │ │ ├── allowtagsfrompaste.html │ │ ├── base64.html │ │ ├── cleanpaste.html │ │ ├── colors.html │ │ ├── emoji.html │ │ ├── fontfamily.html │ │ ├── fontsize.html │ │ ├── giphy.html │ │ ├── highlight.html │ │ ├── history.html │ │ ├── indent.html │ │ ├── insertaudio.html │ │ ├── lineheight.html │ │ ├── mathml.html │ │ ├── mention.html │ │ ├── noembed.html │ │ ├── pasteembed.html │ │ ├── pasteimage.html │ │ ├── preformatted.html │ │ ├── resizimg.html │ │ ├── ruby.html │ │ ├── specialchars.html │ │ ├── speechrecognition.html │ │ ├── table.html │ │ ├── template.html │ │ ├── tenor.html │ │ └── upload.html │ ├── documentation/ │ │ ├── core/ │ │ │ └── index.html │ │ ├── index.html │ │ └── plugins/ │ │ └── index.html │ ├── gulpfile.mjs │ ├── humans.txt │ ├── index.html │ ├── js/ │ │ ├── main.js │ │ └── vendor/ │ │ └── highlight.js │ ├── package.json │ ├── robots.txt │ └── scss/ │ ├── _base.scss │ ├── _buttons.scss │ ├── _documentation.scss │ ├── _donate.scss │ ├── _font.scss │ ├── _footer.scss │ ├── _get-started.scss │ ├── _header.scss │ ├── _highlightjs-github.scss │ ├── _introduction.scss │ ├── _languages.scss │ ├── _normalize.scss │ ├── _plugins-packages.scss │ ├── _section.scss │ ├── _variables.scss │ └── main.scss ├── gulpfile.mjs ├── index.html ├── package.json ├── plugins/ │ ├── allowtagsfrompaste/ │ │ └── trumbowyg.allowtagsfrompaste.js │ ├── base64/ │ │ └── trumbowyg.base64.js │ ├── cleanpaste/ │ │ └── trumbowyg.cleanpaste.js │ ├── colors/ │ │ ├── trumbowyg.colors.js │ │ └── ui/ │ │ └── sass/ │ │ └── trumbowyg.colors.scss │ ├── emoji/ │ │ ├── trumbowyg.emoji.js │ │ └── ui/ │ │ └── sass/ │ │ └── trumbowyg.emoji.scss │ ├── fontfamily/ │ │ └── trumbowyg.fontfamily.js │ ├── fontsize/ │ │ └── trumbowyg.fontsize.js │ ├── giphy/ │ │ ├── trumbowyg.giphy.js │ │ └── ui/ │ │ └── sass/ │ │ └── trumbowyg.giphy.scss │ ├── highlight/ │ │ ├── trumbowyg.highlight.js │ │ └── ui/ │ │ └── sass/ │ │ └── trumbowyg.highlight.scss │ ├── history/ │ │ └── trumbowyg.history.js │ ├── indent/ │ │ └── trumbowyg.indent.js │ ├── insertaudio/ │ │ └── trumbowyg.insertaudio.js │ ├── lineheight/ │ │ └── trumbowyg.lineheight.js │ ├── mathml/ │ │ ├── trumbowyg.mathml.js │ │ └── ui/ │ │ └── sass/ │ │ └── trumbowyg.mathml.scss │ ├── mention/ │ │ ├── trumbowyg.mention.js │ │ └── ui/ │ │ └── sass/ │ │ └── trumbowyg.mention.scss │ ├── noembed/ │ │ └── trumbowyg.noembed.js │ ├── pasteembed/ │ │ └── trumbowyg.pasteembed.js │ ├── pasteimage/ │ │ └── trumbowyg.pasteimage.js │ ├── preformatted/ │ │ └── trumbowyg.preformatted.js │ ├── resizimg/ │ │ └── trumbowyg.resizimg.js │ ├── ruby/ │ │ └── trumbowyg.ruby.js │ ├── specialchars/ │ │ ├── trumbowyg.specialchars.js │ │ └── ui/ │ │ └── sass/ │ │ └── trumbowyg.specialchars.scss │ ├── speechrecognition/ │ │ └── trumbowyg.speechrecognition.js │ ├── table/ │ │ ├── trumbowyg.table.js │ │ └── ui/ │ │ └── sass/ │ │ └── trumbowyg.table.scss │ ├── template/ │ │ └── trumbowyg.template.js │ ├── tenor/ │ │ ├── trumbowyg.tenor.js │ │ └── ui/ │ │ └── sass/ │ │ └── trumbowyg.tenor.scss │ └── upload/ │ └── trumbowyg.upload.js └── src/ ├── langs/ │ ├── ar.js │ ├── az.js │ ├── bg.js │ ├── bn.js │ ├── by.js │ ├── ca.js │ ├── cs.js │ ├── da.js │ ├── de.js │ ├── el.js │ ├── en.js │ ├── es.js │ ├── es_ar.js │ ├── et.js │ ├── fa.js │ ├── fi.js │ ├── fr.js │ ├── he.js │ ├── hr.js │ ├── hu.js │ ├── id.js │ ├── it.js │ ├── ja.js │ ├── ko.js │ ├── lt.js │ ├── mn.js │ ├── my.js │ ├── nb.js │ ├── nl.js │ ├── ph.js │ ├── pl.js │ ├── pt.js │ ├── pt_br.js │ ├── ro.js │ ├── rs.js │ ├── rs_latin.js │ ├── ru.js │ ├── sk.js │ ├── sl.js │ ├── sq.js │ ├── sv.js │ ├── th.js │ ├── tr.js │ ├── ua.js │ ├── vi.js │ ├── zh_cn.js │ └── zh_tw.js ├── trumbowyg.js └── ui/ └── sass/ └── trumbowyg.scss