├── README.md ├── .gitmodules └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | kityformula 2 | =========== 3 | 4 | WEB mathematical formulas projects 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "editor"] 2 | path = editor 3 | url = git@github.com:fex-team/kf-editor.git 4 | [submodule "parser"] 5 | path = parser 6 | url = git@github.com:fex-team/kf-parser.git 7 | [submodule "render"] 8 | path = render 9 | url = git@github.com:fex-team/kf-render.git 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ############### 2 | # node # 3 | ############### 4 | node_modules 5 | npm-debug.log 6 | 7 | ############### 8 | # folder # 9 | ############### 10 | .idea 11 | log 12 | upload 13 | dist 14 | 15 | 16 | ############### 17 | # fixed file # 18 | ############### 19 | *.pptx 20 | *.doc 21 | *.docx 22 | *.xml 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | ################# 34 | ## Eclipse 35 | ################# 36 | 37 | *.pydevproject 38 | .project 39 | .metadata 40 | bin/ 41 | tmp/ 42 | *.tmp 43 | *.bak 44 | *.swp 45 | *~.nib 46 | local.properties 47 | .classpath 48 | .settings/ 49 | .loadpath 50 | 51 | # External tool builders 52 | .externalToolBuilders/ 53 | 54 | # Locally stored "Eclipse launch configurations" 55 | *.launch 56 | 57 | # CDT-specific 58 | .cproject 59 | 60 | # PDT-specific 61 | .buildpath 62 | 63 | 64 | ################# 65 | ## Visual Studio 66 | ################# 67 | 68 | ## Ignore Visual Studio temporary files, build results, and 69 | ## files generated by popular Visual Studio add-ons. 70 | 71 | # User-specific files 72 | *.suo 73 | *.user 74 | *.sln.docstates 75 | 76 | # Build results 77 | [Dd]ebug/ 78 | [Rr]elease/ 79 | *_i.c 80 | *_p.c 81 | *.ilk 82 | *.meta 83 | *.obj 84 | *.pch 85 | *.pdb 86 | *.pgc 87 | *.pgd 88 | *.rsp 89 | *.sbr 90 | *.tlb 91 | *.tli 92 | *.tlh 93 | *.tmp 94 | *.vspscc 95 | .builds 96 | *.dotCover 97 | 98 | ## TODO: If you have NuGet Package Restore enabled, uncomment this 99 | #packages/ 100 | 101 | # Visual C++ cache files 102 | ipch/ 103 | *.aps 104 | *.ncb 105 | *.opensdf 106 | *.sdf 107 | 108 | # Visual Studio profiler 109 | *.psess 110 | *.vsp 111 | 112 | # ReSharper is a .NET coding add-in 113 | _ReSharper* 114 | 115 | # Installshield output folder 116 | [Ee]xpress 117 | 118 | # DocProject is a documentation generator add-in 119 | DocProject/buildhelp/ 120 | DocProject/Help/*.HxT 121 | DocProject/Help/*.HxC 122 | DocProject/Help/*.hhc 123 | DocProject/Help/*.hhk 124 | DocProject/Help/*.hhp 125 | DocProject/Help/Html2 126 | DocProject/Help/html 127 | 128 | # Click-Once directory 129 | publish 130 | 131 | # Others 132 | [Bb]in 133 | [Oo]bj 134 | sql 135 | TestResults 136 | *.Cache 137 | ClientBin 138 | stylecop.* 139 | ~$* 140 | *.dbmdl 141 | Generated_Code #added for RIA/Silverlight projects 142 | 143 | # Backup & report files from converting an old project file to a newer 144 | # Visual Studio version. Backup files are not needed, because we have git ;-) 145 | _UpgradeReport_Files/ 146 | Backup*/ 147 | UpgradeLog*.XML 148 | 149 | 150 | 151 | ############ 152 | ## Windows 153 | ############ 154 | 155 | # Windows image file caches 156 | Thumbs.db 157 | 158 | # Folder config file 159 | Desktop.ini 160 | 161 | 162 | ############# 163 | ## Python 164 | ############# 165 | 166 | *.py[co] 167 | 168 | # Packages 169 | *.egg 170 | *.egg-info 171 | dist 172 | eggs 173 | parts 174 | bin 175 | var 176 | sdist 177 | develop-eggs 178 | .installed.cfg 179 | 180 | # Installer logs 181 | pip-log.txt 182 | 183 | # Unit test / coverage reports 184 | .coverage 185 | .tox 186 | 187 | #Translations 188 | *.mo 189 | 190 | #Mr Developer 191 | .mr.developer.cfg 192 | 193 | # Mac crap 194 | .DS_Store 195 | 196 | --------------------------------------------------------------------------------