gitextract_y53f9gsb/ ├── .gitattributes ├── AndroidManifest.xml ├── HighlightTextEditor.iml ├── README.md ├── assets/ │ ├── fib.py │ ├── highlight.css │ ├── lib.lisp │ └── test.html ├── build.gradle ├── gen/ │ ├── android/ │ │ └── support/ │ │ └── v7/ │ │ └── appcompat/ │ │ └── R.java │ └── org/ │ └── evilbinary/ │ └── highliter/ │ ├── BuildConfig.java │ └── R.java ├── gradle/ │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jni/ │ ├── Android.mk │ ├── Application.mk │ ├── highlight/ │ │ ├── Android.mk │ │ ├── android/ │ │ │ ├── app.cpp │ │ │ └── app.h │ │ ├── cli/ │ │ │ ├── arg_parser.cc │ │ │ ├── arg_parser.h │ │ │ ├── cmdlineoptions.cpp │ │ │ ├── cmdlineoptions.h │ │ │ ├── help.cpp │ │ │ ├── help.h │ │ │ ├── main.cpp │ │ │ └── main.h │ │ ├── core/ │ │ │ ├── Diluculum/ │ │ │ │ ├── InternalUtils.cpp │ │ │ │ ├── InternalUtils.hpp │ │ │ │ ├── LuaExceptions.cpp │ │ │ │ ├── LuaFunction.cpp │ │ │ │ ├── LuaState.cpp │ │ │ │ ├── LuaUserData.cpp │ │ │ │ ├── LuaUtils.cpp │ │ │ │ ├── LuaValue.cpp │ │ │ │ ├── LuaVariable.cpp │ │ │ │ └── LuaWrappers.cpp │ │ │ ├── ansigenerator.cpp │ │ │ ├── astyle/ │ │ │ │ ├── ASBeautifier.cpp │ │ │ │ ├── ASEnhancer.cpp │ │ │ │ ├── ASFormatter.cpp │ │ │ │ ├── ASResource.cpp │ │ │ │ └── ASStreamIterator.cpp │ │ │ ├── bbcodegenerator.cpp │ │ │ ├── codegenerator.cpp │ │ │ ├── datadir.cpp │ │ │ ├── elementstyle.cpp │ │ │ ├── htmlgenerator.cpp │ │ │ ├── latexgenerator.cpp │ │ │ ├── objectgenerator.cpp │ │ │ ├── odtgenerator.cpp │ │ │ ├── pangogenerator.cpp │ │ │ ├── platform_fs.cpp │ │ │ ├── preformatter.cpp │ │ │ ├── rtfgenerator.cpp │ │ │ ├── stringtools.cpp │ │ │ ├── stylecolour.cpp │ │ │ ├── svggenerator.cpp │ │ │ ├── syntaxreader.cpp │ │ │ ├── texgenerator.cpp │ │ │ ├── themereader.cpp │ │ │ ├── xhtmlgenerator.cpp │ │ │ └── xterm256generator.cpp │ │ ├── gui-qt/ │ │ │ ├── highlight-gui.qrc │ │ │ ├── highlight.pro │ │ │ ├── highlight.xpm │ │ │ ├── highlight_cs_CZ.ts │ │ │ ├── highlight_de_DE.ts │ │ │ ├── highlight_es_ES.ts │ │ │ ├── highlight_zh_CN.ts │ │ │ ├── io_report.cpp │ │ │ ├── io_report.h │ │ │ ├── io_report.ui │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── mainwindow.ui │ │ │ ├── precomp.h │ │ │ ├── showtextfile.cpp │ │ │ ├── showtextfile.h │ │ │ └── showtextfile.ui │ │ ├── include/ │ │ │ ├── Diluculum/ │ │ │ │ ├── CppObject.hpp │ │ │ │ ├── LuaExceptions.hpp │ │ │ │ ├── LuaFunction.hpp │ │ │ │ ├── LuaState.hpp │ │ │ │ ├── LuaUserData.hpp │ │ │ │ ├── LuaUtils.hpp │ │ │ │ ├── LuaValue.hpp │ │ │ │ ├── LuaVariable.hpp │ │ │ │ ├── LuaWrappers.hpp │ │ │ │ └── Types.hpp │ │ │ ├── ansigenerator.h │ │ │ ├── astyle/ │ │ │ │ ├── ASStreamIterator.h │ │ │ │ └── astyle.h │ │ │ ├── bbcodegenerator.h │ │ │ ├── charcodes.h │ │ │ ├── codegenerator.h │ │ │ ├── datadir.h │ │ │ ├── elementstyle.h │ │ │ ├── enums.h │ │ │ ├── htmlgenerator.h │ │ │ ├── latexgenerator.h │ │ │ ├── objectgenerator.h │ │ │ ├── odtgenerator.h │ │ │ ├── pangogenerator.h │ │ │ ├── platform_fs.h │ │ │ ├── preformatter.h │ │ │ ├── rtfgenerator.h │ │ │ ├── stringtools.h │ │ │ ├── stylecolour.h │ │ │ ├── svggenerator.h │ │ │ ├── syntaxreader.h │ │ │ ├── texgenerator.h │ │ │ ├── themereader.h │ │ │ ├── version.h │ │ │ ├── xhtmlgenerator.h │ │ │ └── xterm256generator.h │ │ └── makefile │ └── lua/ │ ├── Android.mk │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.h │ ├── lua.hpp │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── libs/ │ ├── cssparser-0.9.17.jar │ ├── hotsax.jar │ ├── sac-1.3.jar │ ├── tagsoup-1.2.1.jar │ └── w3c.jar ├── lint.xml ├── local.properties ├── proguard-project.txt ├── project.properties ├── res/ │ ├── layout/ │ │ ├── about.xml │ │ └── activity_main.xml │ ├── menu/ │ │ ├── main.xml │ │ └── mymenu.xml │ ├── values/ │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── values-v11/ │ │ └── styles.xml │ ├── values-v14/ │ │ └── styles.xml │ └── values-w820dp/ │ └── dimens.xml └── src/ └── org/ └── evilbinary/ ├── app/ │ └── MainActivity.java ├── highliter/ │ ├── CodeTextWatcher.java │ ├── Constants.java │ ├── HighlightEditText.java │ ├── parsers/ │ │ ├── MyTagToSpannedConverter.java │ │ ├── SyntaxHighlight.java │ │ └── Token.java │ └── spans/ │ ├── ImageClickableSpan.java │ ├── SafeURLSpan.java │ ├── SpanStyle.java │ ├── VideoClickableSpan.java │ └── VideoSpan.java ├── managers/ │ ├── Configure.java │ ├── ConfigureManager.java │ ├── EmoticonsManager.java │ └── Settings.java └── utils/ ├── BlockFile.java ├── DirUtil.java ├── FileUtil.java ├── IoUtils.java ├── Logger.java ├── PxAndDp.java ├── RichTextUtils.java └── ZipUtil.java