| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692 | 
							- /*
 
-  * Editor.md
 
-  *
 
-  * @file        editormd.amd.js 
 
-  * @version     v1.5.0 
 
-  * @description Open source online markdown editor.
 
-  * @license     MIT License
 
-  * @author      Pandao
 
-  * {@link       https://github.com/pandao/editor.md}
 
-  * @updateTime  2015-06-09
 
-  */
 
- ;(function(factory) {
 
-     "use strict";
 
-     
 
- 	// CommonJS/Node.js
 
- 	if (typeof require === "function" && typeof exports === "object" && typeof module === "object")
 
-     { 
 
-         module.exports = factory;
 
-     }
 
- 	else if (typeof define === "function")  // AMD/CMD/Sea.js
 
- 	{
 
-         if (define.amd) // for Require.js
 
-         {
 
-             var cmModePath  = "codemirror/mode/";
 
-             var cmAddonPath = "codemirror/addon/";
 
-             var codeMirrorModules = [
 
-                 "jquery", "marked",
 
-                 //"prettify",
 
-                 "highlight/highlight",
 
-                 "mermaid/mermaid",
 
-                 "katex", "raphael", "underscore", "flowchart",  "jqueryflowchart",  "sequenceDiagram",
 
-                 "codemirror/lib/codemirror",
 
-                 cmModePath + "css/css",
 
-                 cmModePath + "sass/sass",
 
-                 cmModePath + "shell/shell",
 
-                 cmModePath + "sql/sql",
 
-                 cmModePath + "clike/clike",
 
-                 cmModePath + "php/php",
 
-                 cmModePath + "xml/xml",
 
-                 cmModePath + "markdown/markdown",
 
-                 cmModePath + "javascript/javascript",
 
-                 cmModePath + "htmlmixed/htmlmixed",
 
-                 cmModePath + "gfm/gfm",
 
-                 cmModePath + "http/http",
 
-                 cmModePath + "go/go",
 
-                 cmModePath + "dart/dart",
 
-                 cmModePath + "coffeescript/coffeescript",
 
-                 cmModePath + "nginx/nginx",
 
-                 cmModePath + "python/python",
 
-                 cmModePath + "perl/perl",
 
-                 cmModePath + "lua/lua",
 
-                 cmModePath + "r/r", 
 
-                 cmModePath + "ruby/ruby", 
 
-                 cmModePath + "rst/rst",
 
-                 cmModePath + "smartymixed/smartymixed",
 
-                 cmModePath + "vb/vb",
 
-                 cmModePath + "vbscript/vbscript",
 
-                 cmModePath + "velocity/velocity",
 
-                 cmModePath + "xquery/xquery",
 
-                 cmModePath + "yaml/yaml",
 
-                 cmModePath + "erlang/erlang",
 
-                 cmModePath + "jade/jade",
 
-                 cmAddonPath + "edit/trailingspace", 
 
-                 cmAddonPath + "dialog/dialog", 
 
-                 cmAddonPath + "search/searchcursor", 
 
-                 cmAddonPath + "search/search", 
 
-                 cmAddonPath + "scroll/annotatescrollbar", 
 
-                 cmAddonPath + "search/matchesonscrollbar", 
 
-                 cmAddonPath + "display/placeholder", 
 
-                 cmAddonPath + "edit/closetag", 
 
-                 cmAddonPath + "fold/foldcode",
 
-                 cmAddonPath + "fold/foldgutter",
 
-                 cmAddonPath + "fold/indent-fold",
 
-                 cmAddonPath + "fold/brace-fold",
 
-                 cmAddonPath + "fold/xml-fold", 
 
-                 cmAddonPath + "fold/markdown-fold",
 
-                 cmAddonPath + "fold/comment-fold", 
 
-                 cmAddonPath + "mode/overlay", 
 
-                 cmAddonPath + "selection/active-line", 
 
-                 cmAddonPath + "edit/closebrackets", 
 
-                 cmAddonPath + "display/fullscreen",
 
-                 cmAddonPath + "search/match-highlighter"
 
-             ];
 
-             define(codeMirrorModules, factory);
 
-         } 
 
-         else 
 
-         {
 
- 		    define(["jquery"], factory);  // for Sea.js
 
-         }
 
- 	} 
 
- 	else
 
- 	{ 
 
-         window.editormd = factory();
 
- 	}
 
-     
 
- }(function() {    
 
-     if (typeof define == "function" && define.amd) {
 
-        $          = arguments[0];
 
-        marked     = arguments[1];
 
-        prettify   = arguments[2];
 
-        katex      = arguments[3];
 
-        Raphael    = arguments[4];
 
-        _          = arguments[5];
 
-        flowchart  = arguments[6];
 
-        CodeMirror = arguments[9];
 
-    }
 
-     
 
-     "use strict";
 
-     
 
-     var $ = (typeof (jQuery) !== "undefined") ? jQuery : Zepto;
 
- 	if (typeof ($) === "undefined") {
 
- 		return ;
 
- 	}
 
-     
 
-     /**
 
-      * editormd
 
-      * 
 
-      * @param   {String} id           编辑器的ID
 
-      * @param   {Object} options      配置选项 Key/Value
 
-      * @returns {Object} editormd     返回editormd对象
 
-      */
 
-     
 
-     var editormd         = function (id, options) {
 
-         return new editormd.fn.init(id, options);
 
-     };
 
-     
 
-     editormd.title        = editormd.$name = "Editor.md";
 
-     editormd.version      = "1.5.0";
 
-     editormd.homePage     = "https://pandao.github.io/editor.md/";
 
-     editormd.classPrefix  = "editormd-";
 
-     
 
-     editormd.toolbarModes = {
 
-         full : [
 
-             "undo", "redo", "|", 
 
-             "bold", "del", "italic", "quote", "ucwords", "uppercase", "lowercase", "|", 
 
-             "h1", "h2", "h3", "h4", "h5", "h6", "|", 
 
-             "list-ul", "list-ol", "hr", "|",
 
-             "link", "reference-link", "image", "code", "preformatted-text", "code-block", "table", "datetime", "emoji", "html-entities", "pagebreak", "|",
 
-             "goto-line", "watch", "preview", "fullscreen", "clear", "search", "|",
 
-             "help", "info"
 
-         ],
 
-         simple : [
 
-             "undo", "redo", "|", 
 
-             "bold", "del", "italic", "quote", "uppercase", "lowercase", "|", 
 
-             "h1", "h2", "h3", "h4", "h5", "h6", "|", 
 
-             "list-ul", "list-ol", "hr", "|",
 
-             "watch", "preview", "fullscreen", "|",
 
-             "help", "info"
 
-         ],
 
-         mini : [
 
-             "undo", "redo", "|",
 
-             "watch", "preview", "|",
 
-             "help", "info"
 
-         ]
 
-     };
 
-     
 
-     editormd.defaults     = {
 
-         mode                 : "gfm",          //gfm or markdown
 
-         name                 : "",             // Form element name
 
-         value                : "",             // value for CodeMirror, if mode not gfm/markdown
 
-         theme                : "",             // Editor.md self themes, before v1.5.0 is CodeMirror theme, default empty
 
-         editorTheme          : "default",      // Editor area, this is CodeMirror theme at v1.5.0
 
-         previewTheme         : "",             // Preview area theme, default empty
 
-         markdown             : "",             // Markdown source code
 
-         appendMarkdown       : "",             // if in init textarea value not empty, append markdown to textarea
 
-         width                : "100%",
 
-         height               : "100%",
 
-         path                 : "./lib/",       // Dependents module file directory
 
-         pluginPath           : "",             // If this empty, default use settings.path + "../plugins/"
 
-         delay                : 300,            // Delay parse markdown to html, Uint : ms
 
-         autoLoadModules      : true,           // Automatic load dependent module files
 
-         watch                : true,
 
-         placeholder          : "Enjoy Markdown! coding now...",
 
-         gotoLine             : true,
 
-         codeFold             : false,
 
-         autoHeight           : false,
 
- 		autoFocus            : true,
 
-         autoCloseTags        : true,
 
-         searchReplace        : true,
 
-         syncScrolling        : true,           // true | false | "single", default true
 
-         readOnly             : false,
 
-         tabSize              : 4,
 
- 		indentUnit           : 4,
 
-         lineNumbers          : true,
 
- 		lineWrapping         : true,
 
- 		autoCloseBrackets    : true,
 
- 		showTrailingSpace    : true,
 
- 		matchBrackets        : true,
 
- 		indentWithTabs       : true,
 
- 		styleSelectedText    : true,
 
-         matchWordHighlight   : true,           // options: true, false, "onselected"
 
-         styleActiveLine      : true,           // Highlight the current line
 
-         dialogLockScreen     : true,
 
-         dialogShowMask       : true,
 
-         dialogDraggable      : true,
 
-         dialogMaskBgColor    : "#fff",
 
-         dialogMaskOpacity    : 0.1,
 
-         fontSize             : "13px",
 
-         saveHTMLToTextarea   : false,
 
-         disabledKeyMaps      : [],
 
-         
 
-         onload               : function() {},
 
-         onresize             : function() {},
 
-         onchange             : function() {},
 
-         onwatch              : null,
 
-         onunwatch            : null,
 
-         onpreviewing         : function() {},
 
-         onpreviewed          : function() {},
 
-         onfullscreen         : function() {},
 
-         onfullscreenExit     : function() {},
 
-         onscroll             : function() {},
 
-         onpreviewscroll      : function() {},
 
-         
 
-         imageUpload          : false,
 
-         imageFormats         : ["jpg", "jpeg", "gif", "png", "bmp", "webp"],
 
-         imageUploadURL       : "",
 
-         crossDomainUpload    : false,
 
-         uploadCallbackURL    : "",
 
-         
 
-         toc                  : true,           // Table of contents
 
-         tocm                 : false,           // Using [TOCM], auto create ToC dropdown menu
 
-         tocTitle             : "",             // for ToC dropdown menu btn
 
-         tocDropdown          : false,
 
-         tocContainer         : "",
 
-         tocStartLevel        : 1,              // Said from H1 to create ToC
 
-         htmlDecode           : false,          // Open the HTML tag identification 
 
-         pageBreak            : true,           // Enable parse page break [========]
 
-         atLink               : true,           // for @link
 
-         emailLink            : true,           // for email address auto link
 
-         taskList             : false,          // Enable Github Flavored Markdown task lists
 
-         emoji                : false,          // :emoji: , Support Github emoji, Twitter Emoji (Twemoji);
 
-                                                // Support FontAwesome icon emoji :fa-xxx: > Using fontAwesome icon web fonts;
 
-                                                // Support Editor.md logo icon emoji :editormd-logo: :editormd-logo-1x: > 1~8x;
 
-         tex                  : false,          // TeX(LaTeX), based on KaTeX
 
-         flowChart            : false,          // flowChart.js only support IE9+
 
-         sequenceDiagram      : false,          // sequenceDiagram.js only support IE9+
 
-         mermaidGantt         : false,          //mermaid/mermaid.js
 
-         mermaidSequence      : false,
 
-         mermaidFlowChat      : false,
 
-         previewCodeHighlight : true,
 
-         highlightStyle       : "github",
 
-                 
 
-         toolbar              : true,           // show/hide toolbar
 
-         toolbarAutoFixed     : true,           // on window scroll auto fixed position
 
-         toolbarIcons         : "full",
 
-         toolbarTitles        : {},
 
-         toolbarHandlers      : {
 
-             ucwords : function() {
 
-                 return editormd.toolbarHandlers.ucwords;
 
-             },
 
-             lowercase : function() {
 
-                 return editormd.toolbarHandlers.lowercase;
 
-             }
 
-         },
 
-         toolbarCustomIcons   : {               // using html tag create toolbar icon, unused default <a> tag.
 
-             lowercase        : "<a href=\"javascript:;\" title=\"Lowercase\" unselectable=\"on\"><i class=\"fa\" name=\"lowercase\" style=\"font-size:24px;margin-top: -10px;\">a</i></a>",
 
-             "ucwords"        : "<a href=\"javascript:;\" title=\"ucwords\" unselectable=\"on\"><i class=\"fa\" name=\"ucwords\" style=\"font-size:20px;margin-top: -3px;\">Aa</i></a>"
 
-         }, 
 
-         toolbarIconsClass    : {
 
-             undo             : "fa-undo",
 
-             redo             : "fa-repeat",
 
-             bold             : "fa-bold",
 
-             del              : "fa-strikethrough",
 
-             italic           : "fa-italic",
 
-             quote            : "fa-quote-left",
 
-             uppercase        : "fa-font",
 
-             h1               : editormd.classPrefix + "bold",
 
-             h2               : editormd.classPrefix + "bold",
 
-             h3               : editormd.classPrefix + "bold",
 
-             h4               : editormd.classPrefix + "bold",
 
-             h5               : editormd.classPrefix + "bold",
 
-             h6               : editormd.classPrefix + "bold",
 
-             "list-ul"        : "fa-list-ul",
 
-             "list-ol"        : "fa-list-ol",
 
-             hr               : "fa-minus",
 
-             link             : "fa-link",
 
-             "reference-link" : "fa-anchor",
 
-             image            : "fa-picture-o",
 
-             code             : "fa-code",
 
-             "preformatted-text" : "fa-file-code-o",
 
-             "code-block"     : "fa-file-code-o",
 
-             table            : "fa-table",
 
-             datetime         : "fa-clock-o",
 
-             emoji            : "fa-smile-o",
 
-             "html-entities"  : "fa-copyright",
 
-             pagebreak        : "fa-newspaper-o",
 
-             "goto-line"      : "fa-terminal", // fa-crosshairs
 
-             watch            : "fa-eye-slash",
 
-             unwatch          : "fa-eye",
 
-             preview          : "fa-desktop",
 
-             search           : "fa-search",
 
-             fullscreen       : "fa-arrows-alt",
 
-             clear            : "fa-eraser",
 
-             help             : "fa-question-circle",
 
-             info             : "fa-info-circle"
 
-         },        
 
-         toolbarIconTexts     : {},
 
-         
 
-         lang : {
 
-             name        : "zh-cn",
 
-             description : "开源在线Markdown编辑器<br/>Open source online Markdown editor.",
 
-             tocTitle    : "目录",
 
-             toolbar     : {
 
-                 undo             : "撤销(Ctrl+Z)",
 
-                 redo             : "重做(Ctrl+Y)",
 
-                 bold             : "粗体",
 
-                 del              : "删除线",
 
-                 italic           : "斜体",
 
-                 quote            : "引用",
 
-                 ucwords          : "将每个单词首字母转成大写",
 
-                 uppercase        : "将所选转换成大写",
 
-                 lowercase        : "将所选转换成小写",
 
-                 h1               : "标题1",
 
-                 h2               : "标题2",
 
-                 h3               : "标题3",
 
-                 h4               : "标题4",
 
-                 h5               : "标题5",
 
-                 h6               : "标题6",
 
-                 "list-ul"        : "无序列表",
 
-                 "list-ol"        : "有序列表",
 
-                 hr               : "横线",
 
-                 link             : "链接",
 
-                 "reference-link" : "引用链接",
 
-                 image            : "添加图片",
 
-                 code             : "行内代码",
 
-                 "preformatted-text" : "预格式文本 / 代码块(缩进风格)",
 
-                 "code-block"     : "代码块(多语言风格)",
 
-                 table            : "添加表格",
 
-                 datetime         : "日期时间",
 
-                 emoji            : "Emoji表情",
 
-                 "html-entities"  : "HTML实体字符",
 
-                 pagebreak        : "插入分页符",
 
-                 "goto-line"      : "跳转到行",
 
-                 watch            : "关闭实时预览",
 
-                 unwatch          : "开启实时预览",
 
-                 preview          : "全窗口预览HTML(按 Shift + ESC还原)",
 
-                 fullscreen       : "全屏(按ESC还原)",
 
-                 clear            : "清空",
 
-                 search           : "搜索",
 
-                 help             : "使用帮助",
 
-                 info             : "关于" + editormd.title
 
-             },
 
-             buttons : {
 
-                 enter  : "确定",
 
-                 cancel : "取消",
 
-                 close  : "关闭"
 
-             },
 
-             dialog : {
 
-                 link : {
 
-                     title    : "添加链接",
 
-                     url      : "链接地址",
 
-                     urlTitle : "链接标题",
 
-                     urlEmpty : "错误:请填写链接地址。"
 
-                 },
 
-                 referenceLink : {
 
-                     title    : "添加引用链接",
 
-                     name     : "引用名称",
 
-                     url      : "链接地址",
 
-                     urlId    : "链接ID",
 
-                     urlTitle : "链接标题",
 
-                     nameEmpty: "错误:引用链接的名称不能为空。",
 
-                     idEmpty  : "错误:请填写引用链接的ID。",
 
-                     urlEmpty : "错误:请填写引用链接的URL地址。"
 
-                 },
 
-                 image : {
 
-                     title    : "添加图片",
 
-                     url      : "图片地址",
 
-                     link     : "图片链接",
 
-                     alt      : "图片描述",
 
-                     uploadButton     : "本地上传",
 
-                     imageURLEmpty    : "错误:图片地址不能为空。",
 
-                     uploadFileEmpty  : "错误:上传的图片不能为空。",
 
-                     formatNotAllowed : "错误:只允许上传图片文件,允许上传的图片文件格式有:"
 
-                 },
 
-                 preformattedText : {
 
-                     title             : "添加预格式文本或代码块", 
 
-                     emptyAlert        : "错误:请填写预格式文本或代码的内容。"
 
-                 },
 
-                 codeBlock : {
 
-                     title             : "添加代码块",                    
 
-                     selectLabel       : "代码语言:",
 
-                     selectDefaultText : "请选择代码语言",
 
-                     otherLanguage     : "其他语言",
 
-                     unselectedLanguageAlert : "错误:请选择代码所属的语言类型。",
 
-                     codeEmptyAlert    : "错误:请填写代码内容。"
 
-                 },
 
-                 htmlEntities : {
 
-                     title : "HTML 实体字符"
 
-                 },
 
-                 help : {
 
-                     title : "使用帮助"
 
-                 }
 
-             }
 
-         }
 
-     };
 
-     
 
-     editormd.classNames  = {
 
-         tex : editormd.classPrefix + "tex"
 
-     };
 
-     editormd.dialogZindex = 99999;
 
-     
 
-     editormd.$katex       = null;
 
-     editormd.$marked      = null;
 
-     editormd.$CodeMirror  = null;
 
-     editormd.$prettyPrint = null;
 
-     
 
-     var timer, flowchartTimer;
 
-     editormd.prototype    = editormd.fn = {
 
-         state : {
 
-             watching   : false,
 
-             loaded     : false,
 
-             preview    : false,
 
-             fullscreen : false
 
-         },
 
-         
 
-         /**
 
-          * 构造函数/实例初始化
 
-          * Constructor / instance initialization
 
-          * 
 
-          * @param   {String}   id            编辑器的ID
 
-          * @param   {Object}   [options={}]  配置选项 Key/Value
 
-          * @returns {editormd}               返回editormd的实例对象
 
-          */
 
-         
 
-         init : function (id, options) {
 
-             
 
-             options              = options || {};
 
-             
 
-             if (typeof id === "object")
 
-             {
 
-                 options = id;
 
-             }
 
-             
 
-             var _this            = this;
 
-             var classPrefix      = this.classPrefix  = editormd.classPrefix; 
 
-             var settings         = this.settings     = $.extend(true, editormd.defaults, options);
 
-             
 
-             id                   = (typeof id === "object") ? settings.id : id;
 
-             
 
-             var editor           = this.editor       = $("#" + id);
 
-             
 
-             this.id              = id;
 
-             this.lang            = settings.lang;
 
-             
 
-             var classNames       = this.classNames   = {
 
-                 textarea : {
 
-                     html     : classPrefix + "html-textarea",
 
-                     markdown : classPrefix + "markdown-textarea"
 
-                 }
 
-             };
 
-             
 
-             settings.pluginPath = (settings.pluginPath === "") ? settings.path + "../plugins/" : settings.pluginPath; 
 
-             
 
-             this.state.watching = (settings.watch) ? true : false;
 
-             
 
-             if ( !editor.hasClass("editormd") ) {
 
-                 editor.addClass("editormd");
 
-             }
 
-             
 
-             editor.css({
 
-                 width  : (typeof settings.width  === "number") ? settings.width  + "px" : settings.width,
 
-                 height : (typeof settings.height === "number") ? settings.height + "px" : settings.height
 
-             });
 
-             
 
-             if (settings.autoHeight)
 
-             {
 
-                 editor.css("height", "auto");
 
-             }
 
-                         
 
-             var markdownTextarea = this.markdownTextarea = editor.children("textarea");
 
-             
 
-             if (markdownTextarea.length < 1)
 
-             {
 
-                 editor.append("<textarea></textarea>");
 
-                 markdownTextarea = this.markdownTextarea = editor.children("textarea");
 
-             }
 
-             
 
-             markdownTextarea.addClass(classNames.textarea.markdown).attr("placeholder", settings.placeholder);
 
-             
 
-             if (typeof markdownTextarea.attr("name") === "undefined" || markdownTextarea.attr("name") === "")
 
-             {
 
-                 markdownTextarea.attr("name", (settings.name !== "") ? settings.name : id + "-markdown-doc");
 
-             }
 
-             
 
-             var appendElements = [
 
-                 (!settings.readOnly) ? "<a href=\"javascript:;\" class=\"fa fa-close " + classPrefix + "preview-close-btn\"></a>" : "",
 
-                 ( (settings.saveHTMLToTextarea) ? "<textarea class=\"" + classNames.textarea.html + "\" name=\"" + id + "-html-code\"></textarea>" : "" ),
 
-                 "<div class=\"" + classPrefix + "preview\"><div class=\"markdown-body " + classPrefix + "preview-container\"></div></div>",
 
-                 "<div class=\"" + classPrefix + "container-mask\" style=\"display:block;\"></div>",
 
-                 "<div class=\"" + classPrefix + "mask\"></div>"
 
-             ].join("\n");
 
-             
 
-             editor.append(appendElements).addClass(classPrefix + "vertical");
 
-             
 
-             if (settings.theme !== "") 
 
-             {
 
-                 editor.addClass(classPrefix + "theme-" + settings.theme);
 
-             }
 
-             
 
-             this.mask          = editor.children("." + classPrefix + "mask");    
 
-             this.containerMask = editor.children("." + classPrefix  + "container-mask");
 
-             
 
-             if (settings.markdown !== "")
 
-             {
 
-                 markdownTextarea.val(settings.markdown);
 
-             }
 
-             
 
-             if (settings.appendMarkdown !== "")
 
-             {
 
-                 markdownTextarea.val(markdownTextarea.val() + settings.appendMarkdown);
 
-             }
 
-             
 
-             this.htmlTextarea     = editor.children("." + classNames.textarea.html);            
 
-             this.preview          = editor.children("." + classPrefix + "preview");
 
-             this.previewContainer = this.preview.children("." + classPrefix + "preview-container");
 
-             
 
-             if (settings.previewTheme !== "") 
 
-             {
 
-                 this.preview.addClass(classPrefix + "preview-theme-" + settings.previewTheme);
 
-             }
 
-             
 
-             if (typeof define === "function" && define.amd)
 
-             {
 
-                 if (typeof katex !== "undefined") 
 
-                 {
 
-                     editormd.$katex = katex;
 
-                 }
 
-                 
 
-                 if (settings.searchReplace && !settings.readOnly) 
 
-                 {
 
-                     editormd.loadCSS(settings.path + "codemirror/addon/dialog/dialog");
 
-                     editormd.loadCSS(settings.path + "codemirror/addon/search/matchesonscrollbar");
 
-                 }
 
-             }
 
-             
 
-             if ((typeof define === "function" && define.amd) || !settings.autoLoadModules)
 
-             {
 
-                 if (typeof CodeMirror !== "undefined") {
 
-                     editormd.$CodeMirror = CodeMirror;
 
-                 }
 
-                 
 
-                 if (typeof marked     !== "undefined") {
 
-                     editormd.$marked     = marked;
 
-                 }
 
-                 
 
-                 this.setCodeMirror().setToolbar().loadedDisplay();
 
-             } 
 
-             else 
 
-             {
 
-                 this.loadQueues();
 
-             }
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 所需组件加载队列
 
-          * Required components loading queue
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         loadQueues : function() {
 
-             var _this        = this;
 
-             var settings     = this.settings;
 
-             var loadPath     = settings.path;
 
-                                 
 
-             var loadFlowChartOrSequenceDiagram = function() {
 
-                 
 
-                 if (editormd.isIE8) 
 
-                 {
 
-                     _this.loadedDisplay();
 
-                     
 
-                     return ;
 
-                 }
 
-                 if (settings.mermaidGantt || settings.mermaidFlowChat || settings.mermaidSequence) {
 
-                     console.log("aa")
 
-                     editormd.loadScript(loadPath + "mermaid/mermaid.min", function () {
 
-                         _this.loadedDisplay();
 
-                     });
 
-                 }
 
-                 if (settings.flowChart || settings.sequenceDiagram) 
 
-                 {
 
-                     editormd.loadScript(loadPath + "raphael.min", function() {
 
-                         editormd.loadScript(loadPath + "underscore.min", function() {  
 
-                             if (!settings.flowChart && settings.sequenceDiagram) 
 
-                             {
 
-                                 editormd.loadScript(loadPath + "sequence-diagram.min", function() {
 
-                                     _this.loadedDisplay();
 
-                                 });
 
-                             }
 
-                             else if (settings.flowChart && !settings.sequenceDiagram) 
 
-                             {      
 
-                                 editormd.loadScript(loadPath + "flowchart.min", function() {  
 
-                                     editormd.loadScript(loadPath + "jquery.flowchart.min", function() {
 
-                                         _this.loadedDisplay();
 
-                                     });
 
-                                 });
 
-                             }
 
-                             else if (settings.flowChart && settings.sequenceDiagram) 
 
-                             {  
 
-                                 editormd.loadScript(loadPath + "flowchart.min", function() {  
 
-                                     editormd.loadScript(loadPath + "jquery.flowchart.min", function() {
 
-                                         editormd.loadScript(loadPath + "sequence-diagram.min", function() {
 
-                                             _this.loadedDisplay();
 
-                                         });
 
-                                     });
 
-                                 });
 
-                             }
 
-                         });
 
-                     });
 
-                 } 
 
-                 else
 
-                 {
 
-                     _this.loadedDisplay();
 
-                 }
 
-             }; 
 
-             editormd.loadCSS(loadPath + "codemirror/codemirror.min");
 
-             
 
-             if (settings.searchReplace && !settings.readOnly)
 
-             {
 
-                 editormd.loadCSS(loadPath + "codemirror/addon/dialog/dialog");
 
-                 editormd.loadCSS(loadPath + "codemirror/addon/search/matchesonscrollbar");
 
-             }
 
-             
 
-             if (settings.codeFold)
 
-             {
 
-                 editormd.loadCSS(loadPath + "codemirror/addon/fold/foldgutter");            
 
-             }
 
-             
 
-             editormd.loadScript(loadPath + "codemirror/codemirror.min", function() {
 
-                 editormd.$CodeMirror = CodeMirror;
 
-                 
 
-                 editormd.loadScript(loadPath + "codemirror/modes.min", function() {
 
-                     
 
-                     editormd.loadScript(loadPath + "codemirror/addons.min", function() {
 
-                         
 
-                         _this.setCodeMirror();
 
-                         
 
-                         if (settings.mode !== "gfm" && settings.mode !== "markdown") 
 
-                         {
 
-                             _this.loadedDisplay();
 
-                             
 
-                             return false;
 
-                         }
 
-                         
 
-                         _this.setToolbar();
 
-                         editormd.loadScript(loadPath + "marked.min", function() {
 
-                             editormd.$marked = marked;
 
-                                 
 
-                             if (settings.previewCodeHighlight) 
 
-                             {
 
-                                 // editormd.loadScript(loadPath + "prettify.min", function() {
 
-                                 //     loadFlowChartOrSequenceDiagram();
 
-                                 // });
 
-                                 editormd.loadScript(loadPath + "highlight/highlight", function() {
 
-                                     loadFlowChartOrSequenceDiagram();
 
-                                 });
 
-                             } 
 
-                             else
 
-                             {                  
 
-                                 loadFlowChartOrSequenceDiagram();
 
-                             }
 
-                         });
 
-                         
 
-                     });
 
-                     
 
-                 });
 
-                 
 
-             });
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 设置 Editor.md 的整体主题,主要是工具栏
 
-          * Setting Editor.md theme
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         setTheme : function(theme) {
 
-             var editor      = this.editor;
 
-             var oldTheme    = this.settings.theme;
 
-             var themePrefix = this.classPrefix + "theme-";
 
-             
 
-             editor.removeClass(themePrefix + oldTheme).addClass(themePrefix + theme);
 
-             
 
-             this.settings.theme = theme;
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 设置 CodeMirror(编辑区)的主题
 
-          * Setting CodeMirror (Editor area) theme
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         setEditorTheme : function(theme) {  
 
-             var settings   = this.settings;  
 
-             settings.editorTheme = theme;  
 
-             
 
-             if (theme !== "default")
 
-             {
 
-                 editormd.loadCSS(settings.path + "codemirror/theme/" + settings.editorTheme);
 
-             }
 
-             
 
-             this.cm.setOption("theme", theme);
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * setEditorTheme() 的别名
 
-          * setEditorTheme() alias
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         setCodeMirrorTheme : function (theme) {            
 
-             this.setEditorTheme(theme);
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 设置 Editor.md 的主题
 
-          * Setting Editor.md theme
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         setPreviewTheme : function(theme) {  
 
-             var preview     = this.preview;
 
-             var oldTheme    = this.settings.previewTheme;
 
-             var themePrefix = this.classPrefix + "preview-theme-";
 
-             
 
-             preview.removeClass(themePrefix + oldTheme).addClass(themePrefix + theme);
 
-             
 
-             this.settings.previewTheme = theme;
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 配置和初始化CodeMirror组件
 
-          * CodeMirror initialization
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         setCodeMirror : function() { 
 
-             var settings         = this.settings;
 
-             var editor           = this.editor;
 
-             
 
-             if (settings.editorTheme !== "default")
 
-             {
 
-                 editormd.loadCSS(settings.path + "codemirror/theme/" + settings.editorTheme);
 
-             }
 
-             
 
-             var codeMirrorConfig = {
 
-                 mode                      : settings.mode,
 
-                 theme                     : settings.editorTheme,
 
-                 tabSize                   : settings.tabSize,
 
-                 dragDrop                  : false,
 
-                 autofocus                 : settings.autoFocus,
 
-                 autoCloseTags             : settings.autoCloseTags,
 
-                 readOnly                  : (settings.readOnly) ? "nocursor" : false,
 
-                 indentUnit                : settings.indentUnit,
 
-                 lineNumbers               : settings.lineNumbers,
 
-                 lineWrapping              : settings.lineWrapping,
 
-                 extraKeys                 : {
 
-                                                 "Ctrl-Q": function(cm) { 
 
-                                                     cm.foldCode(cm.getCursor()); 
 
-                                                 }
 
-                                             },
 
-                 foldGutter                : settings.codeFold,
 
-                 gutters                   : ["CodeMirror-linenumbers", "CodeMirror-foldgutter"],
 
-                 matchBrackets             : settings.matchBrackets,
 
-                 indentWithTabs            : settings.indentWithTabs,
 
-                 styleActiveLine           : settings.styleActiveLine,
 
-                 styleSelectedText         : settings.styleSelectedText,
 
-                 autoCloseBrackets         : settings.autoCloseBrackets,
 
-                 showTrailingSpace         : settings.showTrailingSpace,
 
-                 highlightSelectionMatches : ( (!settings.matchWordHighlight) ? false : { showToken: (settings.matchWordHighlight === "onselected") ? false : /\w/ } )
 
-             };
 
-             
 
-             this.codeEditor = this.cm        = editormd.$CodeMirror.fromTextArea(this.markdownTextarea[0], codeMirrorConfig);
 
-             this.codeMirror = this.cmElement = editor.children(".CodeMirror");
 
-             
 
-             if (settings.value !== "")
 
-             {
 
-                 this.cm.setValue(settings.value);
 
-             }
 
-             this.codeMirror.css({
 
-                 fontSize : settings.fontSize,
 
-                 width    : (!settings.watch) ? "100%" : "50%"
 
-             });
 
-             
 
-             if (settings.autoHeight)
 
-             {
 
-                 this.codeMirror.css("height", "auto");
 
-                 this.cm.setOption("viewportMargin", Infinity);
 
-             }
 
-             
 
-             if (!settings.lineNumbers)
 
-             {
 
-                 this.codeMirror.find(".CodeMirror-gutters").css("border-right", "none");
 
-             }
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 获取CodeMirror的配置选项
 
-          * Get CodeMirror setting options
 
-          * 
 
-          * @returns {Mixed}                  return CodeMirror setting option value
 
-          */
 
-         
 
-         getCodeMirrorOption : function(key) {            
 
-             return this.cm.getOption(key);
 
-         },
 
-         
 
-         /**
 
-          * 配置和重配置CodeMirror的选项
 
-          * CodeMirror setting options / resettings
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         setCodeMirrorOption : function(key, value) {
 
-             
 
-             this.cm.setOption(key, value);
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 添加 CodeMirror 键盘快捷键
 
-          * Add CodeMirror keyboard shortcuts key map
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         addKeyMap : function(map, bottom) {
 
-             this.cm.addKeyMap(map, bottom);
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 移除 CodeMirror 键盘快捷键
 
-          * Remove CodeMirror keyboard shortcuts key map
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         removeKeyMap : function(map) {
 
-             this.cm.removeKeyMap(map);
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 跳转到指定的行
 
-          * Goto CodeMirror line
 
-          * 
 
-          * @param   {String|Intiger}   line      line number or "first"|"last"
 
-          * @returns {editormd}                   返回editormd的实例对象
 
-          */
 
-         
 
-         gotoLine : function (line) {
 
-             
 
-             var settings = this.settings;
 
-             
 
-             if (!settings.gotoLine)
 
-             {
 
-                 return this;
 
-             }
 
-             
 
-             var cm       = this.cm;
 
-             var editor   = this.editor;
 
-             var count    = cm.lineCount();
 
-             var preview  = this.preview;
 
-             
 
-             if (typeof line === "string")
 
-             {
 
-                 if(line === "last")
 
-                 {
 
-                     line = count;
 
-                 }
 
-             
 
-                 if (line === "first")
 
-                 {
 
-                     line = 1;
 
-                 }
 
-             }
 
-             
 
-             if (typeof line !== "number") 
 
-             {  
 
-                 alert("Error: The line number must be an integer.");
 
-                 return this;
 
-             }
 
-             
 
-             line  = parseInt(line) - 1;
 
-             
 
-             if (line > count)
 
-             {
 
-                 alert("Error: The line number range 1-" + count);
 
-                 
 
-                 return this;
 
-             }
 
-             
 
-             cm.setCursor( {line : line, ch : 0} );
 
-             
 
-             var scrollInfo   = cm.getScrollInfo();
 
-             var clientHeight = scrollInfo.clientHeight; 
 
-             var coords       = cm.charCoords({line : line, ch : 0}, "local");
 
-             
 
-             cm.scrollTo(null, (coords.top + coords.bottom - clientHeight) / 2);
 
-             
 
-             if (settings.watch)
 
-             {            
 
-                 var cmScroll  = this.codeMirror.find(".CodeMirror-scroll")[0];
 
-                 var height    = $(cmScroll).height(); 
 
-                 var scrollTop = cmScroll.scrollTop;         
 
-                 var percent   = (scrollTop / cmScroll.scrollHeight);
 
-                 if (scrollTop === 0)
 
-                 {
 
-                     preview.scrollTop(0);
 
-                 } 
 
-                 else if (scrollTop + height >= cmScroll.scrollHeight - 16)
 
-                 { 
 
-                     preview.scrollTop(preview[0].scrollHeight);                    
 
-                 } 
 
-                 else
 
-                 {                    
 
-                     preview.scrollTop(preview[0].scrollHeight * percent);
 
-                 }
 
-             }
 
-             cm.focus();
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 扩展当前实例对象,可同时设置多个或者只设置一个
 
-          * Extend editormd instance object, can mutil setting.
 
-          * 
 
-          * @returns {editormd}                  this(editormd instance object.)
 
-          */
 
-         
 
-         extend : function() {
 
-             if (typeof arguments[1] !== "undefined")
 
-             {
 
-                 if (typeof arguments[1] === "function")
 
-                 {
 
-                     arguments[1] = $.proxy(arguments[1], this);
 
-                 }
 
-                 this[arguments[0]] = arguments[1];
 
-             }
 
-             
 
-             if (typeof arguments[0] === "object" && typeof arguments[0].length === "undefined")
 
-             {
 
-                 $.extend(true, this, arguments[0]);
 
-             }
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 设置或扩展当前实例对象,单个设置
 
-          * Extend editormd instance object, one by one
 
-          * 
 
-          * @param   {String|Object}   key       option key
 
-          * @param   {String|Object}   value     option value
 
-          * @returns {editormd}                  this(editormd instance object.)
 
-          */
 
-         
 
-         set : function (key, value) {
 
-             
 
-             if (typeof value !== "undefined" && typeof value === "function")
 
-             {
 
-                 value = $.proxy(value, this);
 
-             }
 
-             
 
-             this[key] = value;
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 重新配置
 
-          * Resetting editor options
 
-          * 
 
-          * @param   {String|Object}   key       option key
 
-          * @param   {String|Object}   value     option value
 
-          * @returns {editormd}                  this(editormd instance object.)
 
-          */
 
-         
 
-         config : function(key, value) {
 
-             var settings = this.settings;
 
-             
 
-             if (typeof key === "object")
 
-             {
 
-                 settings = $.extend(true, settings, key);
 
-             }
 
-             
 
-             if (typeof key === "string")
 
-             {
 
-                 settings[key] = value;
 
-             }
 
-             
 
-             this.settings = settings;
 
-             this.recreate();
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 注册事件处理方法
 
-          * Bind editor event handle
 
-          * 
 
-          * @param   {String}     eventType      event type
 
-          * @param   {Function}   callback       回调函数
 
-          * @returns {editormd}                  this(editormd instance object.)
 
-          */
 
-         
 
-         on : function(eventType, callback) {
 
-             var settings = this.settings;
 
-             
 
-             if (typeof settings["on" + eventType] !== "undefined") 
 
-             {                
 
-                 settings["on" + eventType] = $.proxy(callback, this);      
 
-             }
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 解除事件处理方法
 
-          * Unbind editor event handle
 
-          * 
 
-          * @param   {String}   eventType          event type
 
-          * @returns {editormd}                    this(editormd instance object.)
 
-          */
 
-         
 
-         off : function(eventType) {
 
-             var settings = this.settings;
 
-             
 
-             if (typeof settings["on" + eventType] !== "undefined") 
 
-             {
 
-                 settings["on" + eventType] = function(){};
 
-             }
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 显示工具栏
 
-          * Display toolbar
 
-          * 
 
-          * @param   {Function} [callback=function(){}] 回调函数
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         showToolbar : function(callback) {
 
-             var settings = this.settings;
 
-             
 
-             if(settings.readOnly) {
 
-                 return this;
 
-             }
 
-             
 
-             if (settings.toolbar && (this.toolbar.length < 1 || this.toolbar.find("." + this.classPrefix + "menu").html() === "") )
 
-             {
 
-                 this.setToolbar();
 
-             }
 
-             
 
-             settings.toolbar = true; 
 
-             
 
-             this.toolbar.show();
 
-             this.resize();
 
-             
 
-             $.proxy(callback || function(){}, this)();
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 隐藏工具栏
 
-          * Hide toolbar
 
-          * 
 
-          * @param   {Function} [callback=function(){}] 回调函数
 
-          * @returns {editormd}                         this(editormd instance object.)
 
-          */
 
-         
 
-         hideToolbar : function(callback) { 
 
-             var settings = this.settings;
 
-             
 
-             settings.toolbar = false;  
 
-             this.toolbar.hide();
 
-             this.resize();
 
-             
 
-             $.proxy(callback || function(){}, this)();
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 页面滚动时工具栏的固定定位
 
-          * Set toolbar in window scroll auto fixed position
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         setToolbarAutoFixed : function(fixed) {
 
-             
 
-             var state    = this.state;
 
-             var editor   = this.editor;
 
-             var toolbar  = this.toolbar;
 
-             var settings = this.settings;
 
-             
 
-             if (typeof fixed !== "undefined")
 
-             {
 
-                 settings.toolbarAutoFixed = fixed;
 
-             }
 
-             
 
-             var autoFixedHandle = function(){
 
-                 var $window = $(window);
 
-                 var top     = $window.scrollTop();
 
-                 
 
-                 if (!settings.toolbarAutoFixed)
 
-                 {
 
-                     return false;
 
-                 }
 
-                 if (top - editor.offset().top > 10 && top < editor.height())
 
-                 {
 
-                     toolbar.css({
 
-                         position : "fixed",
 
-                         width    : editor.width() + "px",
 
-                         left     : ($window.width() - editor.width()) / 2 + "px"
 
-                     });
 
-                 }
 
-                 else
 
-                 {
 
-                     toolbar.css({
 
-                         position : "absolute",
 
-                         width    : "100%",
 
-                         left     : 0
 
-                     });
 
-                 }
 
-             };
 
-             
 
-             if (!state.fullscreen && !state.preview && settings.toolbar && settings.toolbarAutoFixed)
 
-             {
 
-                 $(window).bind("scroll", autoFixedHandle);
 
-             }
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 配置和初始化工具栏
 
-          * Set toolbar and Initialization
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         setToolbar : function() {
 
-             var settings    = this.settings;  
 
-             
 
-             if(settings.readOnly) {
 
-                 return this;
 
-             }
 
-             
 
-             var editor      = this.editor;
 
-             var preview     = this.preview;
 
-             var classPrefix = this.classPrefix;
 
-             
 
-             var toolbar     = this.toolbar = editor.children("." + classPrefix + "toolbar");
 
-             
 
-             if (settings.toolbar && toolbar.length < 1)
 
-             {            
 
-                 var toolbarHTML = "<div class=\"" + classPrefix + "toolbar\"><div class=\"" + classPrefix + "toolbar-container\"><ul class=\"" + classPrefix + "menu\"></ul></div></div>";
 
-                 
 
-                 editor.append(toolbarHTML);
 
-                 toolbar = this.toolbar = editor.children("." + classPrefix + "toolbar");
 
-             }
 
-             
 
-             if (!settings.toolbar) 
 
-             {
 
-                 toolbar.hide();
 
-                 
 
-                 return this;
 
-             }
 
-             
 
-             toolbar.show();
 
-             
 
-             var icons       = (typeof settings.toolbarIcons === "function") ? settings.toolbarIcons() 
 
-                             : ((typeof settings.toolbarIcons === "string")  ? editormd.toolbarModes[settings.toolbarIcons] : settings.toolbarIcons);
 
-             
 
-             var toolbarMenu = toolbar.find("." + this.classPrefix + "menu"), menu = "";
 
-             var pullRight   = false;
 
-             
 
-             for (var i = 0, len = icons.length; i < len; i++)
 
-             {
 
-                 var name = icons[i];
 
-                 if (name === "||") 
 
-                 { 
 
-                     pullRight = true;
 
-                 } 
 
-                 else if (name === "|")
 
-                 {
 
-                     menu += "<li class=\"divider\" unselectable=\"on\">|</li>";
 
-                 }
 
-                 else
 
-                 {
 
-                     var isHeader = (/h(\d)/.test(name));
 
-                     var index    = name;
 
-                     
 
-                     if (name === "watch" && !settings.watch) {
 
-                         index = "unwatch";
 
-                     }
 
-                     
 
-                     var title     = settings.lang.toolbar[index];
 
-                     var iconTexts = settings.toolbarIconTexts[index];
 
-                     var iconClass = settings.toolbarIconsClass[index];
 
-                     
 
-                     title     = (typeof title     === "undefined") ? "" : title;
 
-                     iconTexts = (typeof iconTexts === "undefined") ? "" : iconTexts;
 
-                     iconClass = (typeof iconClass === "undefined") ? "" : iconClass;
 
-                     var menuItem = pullRight ? "<li class=\"pull-right\">" : "<li>";
 
-                     
 
-                     if (typeof settings.toolbarCustomIcons[name] !== "undefined" && typeof settings.toolbarCustomIcons[name] !== "function")
 
-                     {
 
-                         menuItem += settings.toolbarCustomIcons[name];
 
-                     }
 
-                     else 
 
-                     {
 
-                         menuItem += "<a href=\"javascript:;\" title=\"" + title + "\" unselectable=\"on\">";
 
-                         menuItem += "<i class=\"fa " + iconClass + "\" name=\""+name+"\" unselectable=\"on\">"+((isHeader) ? name.toUpperCase() : ( (iconClass === "") ? iconTexts : "") ) + "</i>";
 
-                         menuItem += "</a>";
 
-                     }
 
-                     menuItem += "</li>";
 
-                     menu = pullRight ? menuItem + menu : menu + menuItem;
 
-                 }
 
-             }
 
-             toolbarMenu.html(menu);
 
-             
 
-             toolbarMenu.find("[title=\"Lowercase\"]").attr("title", settings.lang.toolbar.lowercase);
 
-             toolbarMenu.find("[title=\"ucwords\"]").attr("title", settings.lang.toolbar.ucwords);
 
-             
 
-             this.setToolbarHandler();
 
-             this.setToolbarAutoFixed();
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 工具栏图标事件处理对象序列
 
-          * Get toolbar icons event handlers
 
-          * 
 
-          * @param   {Object}   cm    CodeMirror的实例对象
 
-          * @param   {String}   name  要获取的事件处理器名称
 
-          * @returns {Object}         返回处理对象序列
 
-          */
 
-             
 
-         dialogLockScreen : function() {
 
-             $.proxy(editormd.dialogLockScreen, this)();
 
-             
 
-             return this;
 
-         },
 
-         dialogShowMask : function(dialog) {
 
-             $.proxy(editormd.dialogShowMask, this)(dialog);
 
-             
 
-             return this;
 
-         },
 
-         
 
-         getToolbarHandles : function(name) {  
 
-             var toolbarHandlers = this.toolbarHandlers = editormd.toolbarHandlers;
 
-             
 
-             return (name && typeof toolbarIconHandlers[name] !== "undefined") ? toolbarHandlers[name] : toolbarHandlers;
 
-         },
 
-         
 
-         /**
 
-          * 工具栏图标事件处理器
 
-          * Bind toolbar icons event handle
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         setToolbarHandler : function() {
 
-             var _this               = this;
 
-             var settings            = this.settings;
 
-             
 
-             if (!settings.toolbar || settings.readOnly) {
 
-                 return this;
 
-             }
 
-             
 
-             var toolbar             = this.toolbar;
 
-             var cm                  = this.cm;
 
-             var classPrefix         = this.classPrefix;           
 
-             var toolbarIcons        = this.toolbarIcons = toolbar.find("." + classPrefix + "menu > li > a");  
 
-             var toolbarIconHandlers = this.getToolbarHandles();  
 
-                 
 
-             toolbarIcons.bind(editormd.mouseOrTouch("click", "touchend"), function(event) {
 
-                 var icon                = $(this).children(".fa");
 
-                 var name                = icon.attr("name");
 
-                 var cursor              = cm.getCursor();
 
-                 var selection           = cm.getSelection();
 
-                 if (name === "") {
 
-                     return ;
 
-                 }
 
-                 
 
-                 _this.activeIcon = icon;
 
-                 if (typeof toolbarIconHandlers[name] !== "undefined") 
 
-                 {
 
-                     $.proxy(toolbarIconHandlers[name], _this)(cm);
 
-                 }
 
-                 else 
 
-                 {
 
-                     if (typeof settings.toolbarHandlers[name] !== "undefined") 
 
-                     {
 
-                         $.proxy(settings.toolbarHandlers[name], _this)(cm, icon, cursor, selection);
 
-                     }
 
-                 }
 
-                 
 
-                 if (name !== "link" && name !== "reference-link" && name !== "image" && name !== "code-block" && 
 
-                     name !== "preformatted-text" && name !== "watch" && name !== "preview" && name !== "search" && name !== "fullscreen" && name !== "info") 
 
-                 {
 
-                     cm.focus();
 
-                 }
 
-                 return false;
 
-             });
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 动态创建对话框
 
-          * Creating custom dialogs
 
-          * 
 
-          * @param   {Object} options  配置项键值对 Key/Value
 
-          * @returns {dialog}          返回创建的dialog的jQuery实例对象
 
-          */
 
-         
 
-         createDialog : function(options) {            
 
-             return $.proxy(editormd.createDialog, this)(options);
 
-         },
 
-         
 
-         /**
 
-          * 创建关于Editor.md的对话框
 
-          * Create about Editor.md dialog
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         createInfoDialog : function() {
 
-             var _this        = this;
 
- 			var editor       = this.editor;
 
-             var classPrefix  = this.classPrefix;  
 
-             
 
-             var infoDialogHTML = [
 
-                 "<div class=\"" + classPrefix + "dialog " + classPrefix + "dialog-info\" style=\"\">",
 
-                 "<div class=\"" + classPrefix + "dialog-container\">",
 
-                 "<h1><i class=\"editormd-logo editormd-logo-lg editormd-logo-color\"></i> " + editormd.title + "<small>v" + editormd.version + "</small></h1>",
 
-                 "<p>" + this.lang.description + "</p>",
 
-                 "<p style=\"margin: 10px 0 20px 0;\"><a href=\"" + editormd.homePage + "\" target=\"_blank\">" + editormd.homePage + " <i class=\"fa fa-external-link\"></i></a></p>",
 
-                 "<p style=\"font-size: 0.85em;\">Copyright © 2015 <a href=\"https://github.com/pandao\" target=\"_blank\" class=\"hover-link\">Pandao</a>, The <a href=\"https://github.com/pandao/editor.md/blob/master/LICENSE\" target=\"_blank\" class=\"hover-link\">MIT</a> License.</p>",
 
-                 "</div>",
 
-                 "<a href=\"javascript:;\" class=\"fa fa-close " + classPrefix + "dialog-close\"></a>",
 
-                 "</div>"
 
-             ].join("\n");
 
-             editor.append(infoDialogHTML);
 
-             
 
-             var infoDialog  = this.infoDialog = editor.children("." + classPrefix + "dialog-info");
 
-             infoDialog.find("." + classPrefix + "dialog-close").bind(editormd.mouseOrTouch("click", "touchend"), function() {
 
-                 _this.hideInfoDialog();
 
-             });
 
-             
 
-             infoDialog.css("border", (editormd.isIE8) ? "1px solid #ddd" : "").css("z-index", editormd.dialogZindex).show();
 
-             
 
-             this.infoDialogPosition();
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 关于Editor.md对话居中定位
 
-          * Editor.md dialog position handle
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         infoDialogPosition : function() {
 
-             var infoDialog = this.infoDialog;
 
-             
 
- 			var _infoDialogPosition = function() {
 
- 				infoDialog.css({
 
- 					top  : ($(window).height() - infoDialog.height()) / 2 + "px",
 
- 					left : ($(window).width()  - infoDialog.width()) / 2  + "px"
 
- 				});
 
- 			};
 
- 			_infoDialogPosition();
 
- 			$(window).resize(_infoDialogPosition);
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 显示关于Editor.md
 
-          * Display about Editor.md dialog
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         showInfoDialog : function() {
 
-             $("html,body").css("overflow-x", "hidden");
 
-             
 
-             var _this       = this;
 
- 			var editor      = this.editor;
 
-             var settings    = this.settings;         
 
- 			var infoDialog  = this.infoDialog = editor.children("." + this.classPrefix + "dialog-info");
 
-             
 
-             if (infoDialog.length < 1)
 
-             {
 
-                 this.createInfoDialog();
 
-             }
 
-             
 
-             this.lockScreen(true);
 
-             
 
-             this.mask.css({
 
- 						opacity         : settings.dialogMaskOpacity,
 
- 						backgroundColor : settings.dialogMaskBgColor
 
- 					}).show();
 
- 			infoDialog.css("z-index", editormd.dialogZindex).show();
 
- 			this.infoDialogPosition();
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 隐藏关于Editor.md
 
-          * Hide about Editor.md dialog
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         hideInfoDialog : function() {            
 
-             $("html,body").css("overflow-x", "");
 
-             this.infoDialog.hide();
 
-             this.mask.hide();
 
-             this.lockScreen(false);
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 锁屏
 
-          * lock screen
 
-          * 
 
-          * @param   {Boolean}    lock    Boolean 布尔值,是否锁屏
 
-          * @returns {editormd}           返回editormd的实例对象
 
-          */
 
-         
 
-         lockScreen : function(lock) {
 
-             editormd.lockScreen(lock);
 
-             this.resize();
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 编辑器界面重建,用于动态语言包或模块加载等
 
-          * Recreate editor
 
-          * 
 
-          * @returns {editormd}  返回editormd的实例对象
 
-          */
 
-         
 
-         recreate : function() {
 
-             var _this            = this;
 
-             var editor           = this.editor;
 
-             var settings         = this.settings;
 
-             
 
-             this.codeMirror.remove();
 
-             
 
-             this.setCodeMirror();
 
-             if (!settings.readOnly) 
 
-             {
 
-                 if (editor.find(".editormd-dialog").length > 0) {
 
-                     editor.find(".editormd-dialog").remove();
 
-                 }
 
-                 
 
-                 if (settings.toolbar) 
 
-                 {  
 
-                     this.getToolbarHandles();                  
 
-                     this.setToolbar();
 
-                 }
 
-             }
 
-             
 
-             this.loadedDisplay(true);
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 高亮预览HTML的pre代码部分
 
-          * highlight of preview codes
 
-          * 
 
-          * @returns {editormd}             返回editormd的实例对象
 
-          */
 
-         
 
-         previewCodeHighlight : function() {    
 
-             var settings         = this.settings;
 
-             var previewContainer = this.previewContainer;
 
-             
 
-             if (settings.previewCodeHighlight) 
 
-             {
 
-                 // previewContainer.find("pre").addClass("prettyprint");
 
-                 //
 
-                 // if (typeof prettyPrint !== "undefined")
 
-                 // {
 
-                 //     prettyPrint();
 
-                 // }
 
-                 if (typeof hljs !== "undefined") {
 
-                     previewContainer.find('pre').each(function (i, block) {
 
-                         hljs.highlightBlock(block);
 
-                     });
 
-                 }
 
-             }
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 解析TeX(KaTeX)科学公式
 
-          * TeX(KaTeX) Renderer
 
-          * 
 
-          * @returns {editormd}             返回editormd的实例对象
 
-          */
 
-         
 
-         katexRender : function() {
 
-             
 
-             if (timer === null)
 
-             {
 
-                 return this;
 
-             }
 
-             
 
-             this.previewContainer.find("." + editormd.classNames.tex).each(function(){
 
-                 var tex  = $(this);
 
-                 editormd.$katex.render(tex.text(), tex[0]);
 
-                 
 
-                 tex.find(".katex").css("font-size", "1.6em");
 
-             });   
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 解析和渲染流程图及时序图
 
-          * FlowChart and SequenceDiagram Renderer
 
-          * 
 
-          * @returns {editormd}             返回editormd的实例对象
 
-          */
 
-         
 
-         flowChartAndSequenceDiagramRender : function() {
 
-             var $this            = this;
 
-             var settings         = this.settings;
 
-             var previewContainer = this.previewContainer;
 
-             
 
-             if (editormd.isIE8) {
 
-                 return this;
 
-             }
 
-             if (settings.flowChart) {
 
-                 if (flowchartTimer === null) {
 
-                     return this;
 
-                 }
 
-                 
 
-                 previewContainer.find(".flowchart").flowChart(); 
 
-             }
 
-             if (settings.sequenceDiagram) {
 
-                 previewContainer.find(".sequence-diagram").sequenceDiagram({theme: "simple"});
 
-             }
 
-                     
 
-             var preview    = $this.preview;
 
-             var codeMirror = $this.codeMirror;
 
-             var codeView   = codeMirror.find(".CodeMirror-scroll");
 
-             var height    = codeView.height();
 
-             var scrollTop = codeView.scrollTop();                    
 
-             var percent   = (scrollTop / codeView[0].scrollHeight);
 
-             var tocHeight = 0;
 
-             preview.find(".markdown-toc-list").each(function(){
 
-                 tocHeight += $(this).height();
 
-             });
 
-             var tocMenuHeight = preview.find(".editormd-toc-menu").height(); 
 
-             tocMenuHeight = (!tocMenuHeight) ? 0 : tocMenuHeight;
 
-             if (scrollTop === 0) 
 
-             {
 
-                 preview.scrollTop(0);
 
-             } 
 
-             else if (scrollTop + height >= codeView[0].scrollHeight - 16)
 
-             { 
 
-                 preview.scrollTop(preview[0].scrollHeight);                        
 
-             } 
 
-             else
 
-             {                  
 
-                 preview.scrollTop((preview[0].scrollHeight + tocHeight + tocMenuHeight) * percent);
 
-             }
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 注册键盘快捷键处理
 
-          * Register CodeMirror keyMaps (keyboard shortcuts).
 
-          * 
 
-          * @param   {Object}    keyMap      KeyMap key/value {"(Ctrl/Shift/Alt)-Key" : function(){}}
 
-          * @returns {editormd}              return this
 
-          */
 
-         
 
-         registerKeyMaps : function(keyMap) {
 
-             
 
-             var _this           = this;
 
-             var cm              = this.cm;
 
-             var settings        = this.settings;
 
-             var toolbarHandlers = editormd.toolbarHandlers;
 
-             var disabledKeyMaps = settings.disabledKeyMaps;
 
-             
 
-             keyMap              = keyMap || null;
 
-             
 
-             if (keyMap)
 
-             {
 
-                 for (var i in keyMap)
 
-                 {
 
-                     if ($.inArray(i, disabledKeyMaps) < 0)
 
-                     {
 
-                         var map = {};
 
-                         map[i]  = keyMap[i];
 
-                         cm.addKeyMap(keyMap);
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 for (var k in editormd.keyMaps)
 
-                 {
 
-                     var _keyMap = editormd.keyMaps[k];
 
-                     var handle = (typeof _keyMap === "string") ? $.proxy(toolbarHandlers[_keyMap], _this) : $.proxy(_keyMap, _this);
 
-                     
 
-                     if ($.inArray(k, ["F9", "F10", "F11"]) < 0 && $.inArray(k, disabledKeyMaps) < 0)
 
-                     {
 
-                         var _map = {};
 
-                         _map[k] = handle;
 
-                         cm.addKeyMap(_map);
 
-                     }
 
-                 }
 
-                 
 
-                 $(window).keydown(function(event) {
 
-                     
 
-                     var keymaps = {
 
-                         "120" : "F9",
 
-                         "121" : "F10",
 
-                         "122" : "F11"
 
-                     };
 
-                     
 
-                     if ( $.inArray(keymaps[event.keyCode], disabledKeyMaps) < 0 )
 
-                     {
 
-                         switch (event.keyCode)
 
-                         {
 
-                             case 120:
 
-                                     $.proxy(toolbarHandlers["watch"], _this)();
 
-                                     return false;
 
-                                 break;
 
-                                 
 
-                             case 121:
 
-                                     $.proxy(toolbarHandlers["preview"], _this)();
 
-                                     return false;
 
-                                 break;
 
-                                 
 
-                             case 122:
 
-                                     $.proxy(toolbarHandlers["fullscreen"], _this)();                        
 
-                                     return false;
 
-                                 break;
 
-                                 
 
-                             default:
 
-                                 break;
 
-                         }
 
-                     }
 
-                 });
 
-             }
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 绑定同步滚动
 
-          * 
 
-          * @returns {editormd} return this
 
-          */
 
-         
 
-         bindScrollEvent : function() {
 
-             
 
-             var _this            = this;
 
-             var preview          = this.preview;
 
-             var settings         = this.settings;
 
-             var codeMirror       = this.codeMirror;
 
-             var mouseOrTouch     = editormd.mouseOrTouch;
 
-             
 
-             if (!settings.syncScrolling) {
 
-                 return this;
 
-             }
 
-                 
 
-             var cmBindScroll = function() {    
 
-                 codeMirror.find(".CodeMirror-scroll").bind(mouseOrTouch("scroll", "touchmove"), function(event) {
 
-                     var height    = $(this).height();
 
-                     var scrollTop = $(this).scrollTop();                    
 
-                     var percent   = (scrollTop / $(this)[0].scrollHeight);
 
-                     
 
-                     var tocHeight = 0;
 
-                     
 
-                     preview.find(".markdown-toc-list").each(function(){
 
-                         tocHeight += $(this).height();
 
-                     });
 
-                     
 
-                     var tocMenuHeight = preview.find(".editormd-toc-menu").height();
 
-                     tocMenuHeight = (!tocMenuHeight) ? 0 : tocMenuHeight;
 
-                     if (scrollTop === 0) 
 
-                     {
 
-                         preview.scrollTop(0);
 
-                     } 
 
-                     else if (scrollTop + height >= $(this)[0].scrollHeight - 16)
 
-                     { 
 
-                         preview.scrollTop(preview[0].scrollHeight);                        
 
-                     } 
 
-                     else
 
-                     {
 
-                         preview.scrollTop((preview[0].scrollHeight  + tocHeight + tocMenuHeight) * percent);
 
-                     }
 
-                     
 
-                     $.proxy(settings.onscroll, _this)(event);
 
-                 });
 
-             };
 
-             var cmUnbindScroll = function() {
 
-                 codeMirror.find(".CodeMirror-scroll").unbind(mouseOrTouch("scroll", "touchmove"));
 
-             };
 
-             var previewBindScroll = function() {
 
-                 
 
-                 preview.bind(mouseOrTouch("scroll", "touchmove"), function(event) {
 
-                     var height    = $(this).height();
 
-                     var scrollTop = $(this).scrollTop();         
 
-                     var percent   = (scrollTop / $(this)[0].scrollHeight);
 
-                     var codeView  = codeMirror.find(".CodeMirror-scroll");
 
-                     if(scrollTop === 0) 
 
-                     {
 
-                         codeView.scrollTop(0);
 
-                     }
 
-                     else if (scrollTop + height >= $(this)[0].scrollHeight)
 
-                     {
 
-                         codeView.scrollTop(codeView[0].scrollHeight);                        
 
-                     }
 
-                     else 
 
-                     {
 
-                         codeView.scrollTop(codeView[0].scrollHeight * percent);
 
-                     }
 
-                     
 
-                     $.proxy(settings.onpreviewscroll, _this)(event);
 
-                 });
 
-             };
 
-             var previewUnbindScroll = function() {
 
-                 preview.unbind(mouseOrTouch("scroll", "touchmove"));
 
-             }; 
 
- 			codeMirror.bind({
 
- 				mouseover  : cmBindScroll,
 
- 				mouseout   : cmUnbindScroll,
 
- 				touchstart : cmBindScroll,
 
- 				touchend   : cmUnbindScroll
 
- 			});
 
-             
 
-             if (settings.syncScrolling === "single") {
 
-                 return this;
 
-             }
 
-             
 
- 			preview.bind({
 
- 				mouseover  : previewBindScroll,
 
- 				mouseout   : previewUnbindScroll,
 
- 				touchstart : previewBindScroll,
 
- 				touchend   : previewUnbindScroll
 
- 			});
 
-             return this;
 
-         },
 
-         
 
-         bindChangeEvent : function() {
 
-             
 
-             var _this            = this;
 
-             var cm               = this.cm;
 
-             var settings         = this.settings;
 
-             
 
-             if (!settings.syncScrolling) {
 
-                 return this;
 
-             }
 
-             
 
-             cm.on("change", function(_cm, changeObj) {
 
-                 
 
-                 if (settings.watch)
 
-                 {
 
-                     _this.previewContainer.css("padding", settings.autoHeight ? "20px 20px 50px 40px" : "20px");
 
-                 }
 
-                 
 
-                 timer = setTimeout(function() {
 
-                     clearTimeout(timer);
 
-                     _this.save();
 
-                     timer = null;
 
-                 }, settings.delay);
 
-             });
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 加载队列完成之后的显示处理
 
-          * Display handle of the module queues loaded after.
 
-          * 
 
-          * @param   {Boolean}   recreate   是否为重建编辑器
 
-          * @returns {editormd}             返回editormd的实例对象
 
-          */
 
-         
 
-         loadedDisplay : function(recreate) {
 
-             
 
-             recreate             = recreate || false;
 
-             
 
-             var _this            = this;
 
-             var editor           = this.editor;
 
-             var preview          = this.preview;
 
-             var settings         = this.settings;
 
-             
 
-             this.containerMask.hide();
 
-             
 
-             this.save();
 
-             
 
-             if (settings.watch) {
 
-                 preview.show();
 
-             }
 
-             
 
-             editor.data("oldWidth", editor.width()).data("oldHeight", editor.height()); // 为了兼容Zepto
 
-             
 
-             this.resize();
 
-             this.registerKeyMaps();
 
-             
 
-             $(window).resize(function(){
 
-                 _this.resize();
 
-             });
 
-             
 
-             this.bindScrollEvent().bindChangeEvent();
 
-             
 
-             if (!recreate)
 
-             {
 
-                 $.proxy(settings.onload, this)();
 
-             }
 
-             
 
-             this.state.loaded = true;
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 设置编辑器的宽度
 
-          * Set editor width
 
-          * 
 
-          * @param   {Number|String} width  编辑器宽度值
 
-          * @returns {editormd}             返回editormd的实例对象
 
-          */
 
-         
 
-         width : function(width) {
 
-                 
 
-             this.editor.css("width", (typeof width === "number") ? width  + "px" : width);            
 
-             this.resize();
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 设置编辑器的高度
 
-          * Set editor height
 
-          * 
 
-          * @param   {Number|String} height  编辑器高度值
 
-          * @returns {editormd}              返回editormd的实例对象
 
-          */
 
-         
 
-         height : function(height) {
 
-                 
 
-             this.editor.css("height", (typeof height === "number")  ? height  + "px" : height);            
 
-             this.resize();
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 调整编辑器的尺寸和布局
 
-          * Resize editor layout
 
-          * 
 
-          * @param   {Number|String} [width=null]  编辑器宽度值
 
-          * @param   {Number|String} [height=null] 编辑器高度值
 
-          * @returns {editormd}                    返回editormd的实例对象
 
-          */
 
-         
 
-         resize : function(width, height) {
 
-             
 
-             width  = width  || null;
 
-             height = height || null;
 
-             
 
-             var state      = this.state;
 
-             var editor     = this.editor;
 
-             var preview    = this.preview;
 
-             var toolbar    = this.toolbar;
 
-             var settings   = this.settings;
 
-             var codeMirror = this.codeMirror;
 
-             
 
-             if (width)
 
-             {
 
-                 editor.css("width", (typeof width  === "number") ? width  + "px" : width);
 
-             }
 
-             
 
-             if (settings.autoHeight && !state.fullscreen && !state.preview)
 
-             {
 
-                 editor.css("height", "auto");
 
-                 codeMirror.css("height", "auto");
 
-             } 
 
-             else 
 
-             {
 
-                 if (height) 
 
-                 {
 
-                     editor.css("height", (typeof height === "number") ? height + "px" : height);
 
-                 }
 
-                 
 
-                 if (state.fullscreen)
 
-                 {
 
-                     editor.height($(window).height());
 
-                 }
 
-                 if (settings.toolbar && !settings.readOnly) 
 
-                 {
 
-                     codeMirror.css("margin-top", toolbar.height() + 1).height(editor.height() - toolbar.height());
 
-                 } 
 
-                 else
 
-                 {
 
-                     codeMirror.css("margin-top", 0).height(editor.height());
 
-                 }
 
-             }
 
-             
 
-             if(settings.watch) 
 
-             {
 
-                 codeMirror.width(editor.width() / 2);
 
-                 preview.width((!state.preview) ? editor.width() / 2 : editor.width());
 
-                 
 
-                 this.previewContainer.css("padding", settings.autoHeight ? "20px 20px 50px 40px" : "20px");
 
-                 
 
-                 if (settings.toolbar && !settings.readOnly) 
 
-                 {
 
-                     preview.css("top", toolbar.height() + 1);
 
-                 } 
 
-                 else 
 
-                 {
 
-                     preview.css("top", 0);
 
-                 }
 
-                 
 
-                 if (settings.autoHeight && !state.fullscreen && !state.preview)
 
-                 {
 
-                     preview.height("");
 
-                 }
 
-                 else
 
-                 {                
 
-                     var previewHeight = (settings.toolbar && !settings.readOnly) ? editor.height() - toolbar.height() : editor.height();
 
-                     
 
-                     preview.height(previewHeight);
 
-                 }
 
-             } 
 
-             else 
 
-             {
 
-                 codeMirror.width(editor.width());
 
-                 preview.hide();
 
-             }
 
-             
 
-             if (state.loaded) 
 
-             {
 
-                 $.proxy(settings.onresize, this)();
 
-             }
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 解析和保存Markdown代码
 
-          * Parse & Saving Markdown source code
 
-          * 
 
-          * @returns {editormd}     返回editormd的实例对象
 
-          */
 
-         
 
-         save : function() {
 
-             
 
-             if (timer === null)
 
-             {
 
-                 return this;
 
-             }
 
-             
 
-             var _this            = this;
 
-             var state            = this.state;
 
-             var settings         = this.settings;
 
-             var cm               = this.cm;            
 
-             var cmValue          = cm.getValue();
 
-             var previewContainer = this.previewContainer;
 
-             if (settings.mode !== "gfm" && settings.mode !== "markdown") 
 
-             {
 
-                 this.markdownTextarea.val(cmValue);
 
-                 
 
-                 return this;
 
-             }
 
-             
 
-             var marked          = editormd.$marked;
 
-             var markdownToC     = this.markdownToC = [];            
 
-             var rendererOptions = this.markedRendererOptions = {  
 
-                 toc                  : settings.toc,
 
-                 tocm                 : settings.tocm,
 
-                 tocStartLevel        : settings.tocStartLevel,
 
-                 pageBreak            : settings.pageBreak,
 
-                 taskList             : settings.taskList,
 
-                 emoji                : settings.emoji,
 
-                 tex                  : settings.tex,
 
-                 atLink               : settings.atLink,           // for @link
 
-                 emailLink            : settings.emailLink,        // for mail address auto link
 
-                 flowChart            : settings.flowChart,
 
-                 sequenceDiagram      : settings.sequenceDiagram,
 
-                 previewCodeHighlight : settings.previewCodeHighlight,
 
-             };
 
-             
 
-             var markedOptions = this.markedOptions = {
 
-                 renderer    : editormd.markedRenderer(markdownToC, rendererOptions),
 
-                 gfm         : true,
 
-                 tables      : true,
 
-                 breaks      : true,
 
-                 pedantic    : false,
 
-                 sanitize    : (settings.htmlDecode) ? false : true,  // 关闭忽略HTML标签,即开启识别HTML标签,默认为false
 
-                 smartLists  : true,
 
-                 smartypants : true
 
-             };
 
-             
 
-             marked.setOptions(markedOptions);
 
-                     
 
-             var newMarkdownDoc = editormd.$marked(cmValue, markedOptions);
 
-             
 
-             //console.info("cmValue", cmValue, newMarkdownDoc);
 
-             
 
-             newMarkdownDoc = editormd.filterHTMLTags(newMarkdownDoc, settings.htmlDecode);
 
-             
 
-             //console.error("cmValue", cmValue, newMarkdownDoc);
 
-             
 
-             this.markdownTextarea.text(cmValue);
 
-             
 
-             cm.save();
 
-             
 
-             if (settings.saveHTMLToTextarea) 
 
-             {
 
-                 this.htmlTextarea.text(newMarkdownDoc);
 
-             }
 
-             
 
-             if(settings.watch || (!settings.watch && state.preview))
 
-             {
 
-                 previewContainer.html(newMarkdownDoc);
 
-                 this.previewCodeHighlight();
 
-                 
 
-                 if (settings.toc) 
 
-                 {
 
-                     var tocContainer = (settings.tocContainer === "") ? previewContainer : $(settings.tocContainer);
 
-                     var tocMenu      = tocContainer.find("." + this.classPrefix + "toc-menu");
 
-                     
 
-                     tocContainer.attr("previewContainer", (settings.tocContainer === "") ? "true" : "false");
 
-                     
 
-                     if (settings.tocContainer !== "" && tocMenu.length > 0)
 
-                     {
 
-                         tocMenu.remove();
 
-                     }
 
-                     
 
-                     editormd.markdownToCRenderer(markdownToC, tocContainer, settings.tocDropdown, settings.tocStartLevel);
 
-             
 
-                     if (settings.tocDropdown || tocContainer.find("." + this.classPrefix + "toc-menu").length > 0)
 
-                     {
 
-                         editormd.tocDropdownMenu(tocContainer, (settings.tocTitle !== "") ? settings.tocTitle : this.lang.tocTitle);
 
-                     }
 
-             
 
-                     if (settings.tocContainer !== "")
 
-                     {
 
-                         previewContainer.find(".markdown-toc").css("border", "none");
 
-                     }
 
-                 }
 
-                 
 
-                 if (settings.tex)
 
-                 {
 
-                     if (!editormd.kaTeXLoaded && settings.autoLoadModules) 
 
-                     {
 
-                         editormd.loadKaTeX(function() {
 
-                             editormd.$katex = katex;
 
-                             editormd.kaTeXLoaded = true;
 
-                             _this.katexRender();
 
-                         });
 
-                     } 
 
-                     else 
 
-                     {
 
-                         editormd.$katex = katex;
 
-                         this.katexRender();
 
-                     }
 
-                 }                
 
-                 
 
-                 if (settings.flowChart || settings.sequenceDiagram)
 
-                 {
 
-                     flowchartTimer = setTimeout(function(){
 
-                         clearTimeout(flowchartTimer);
 
-                         _this.flowChartAndSequenceDiagramRender();
 
-                         flowchartTimer = null;
 
-                     }, 10);
 
-                 }
 
-                 if (state.loaded) 
 
-                 {
 
-                     $.proxy(settings.onchange, this)();
 
-                 }
 
-             }
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 聚焦光标位置
 
-          * Focusing the cursor position
 
-          * 
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         focus : function() {
 
-             this.cm.focus();
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 设置光标的位置
 
-          * Set cursor position
 
-          * 
 
-          * @param   {Object}    cursor 要设置的光标位置键值对象,例:{line:1, ch:0}
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         setCursor : function(cursor) {
 
-             this.cm.setCursor(cursor);
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 获取当前光标的位置
 
-          * Get the current position of the cursor
 
-          * 
 
-          * @returns {Cursor}         返回一个光标Cursor对象
 
-          */
 
-         
 
-         getCursor : function() {
 
-             return this.cm.getCursor();
 
-         },
 
-         
 
-         /**
 
-          * 设置光标选中的范围
 
-          * Set cursor selected ranges
 
-          * 
 
-          * @param   {Object}    from   开始位置的光标键值对象,例:{line:1, ch:0}
 
-          * @param   {Object}    to     结束位置的光标键值对象,例:{line:1, ch:0}
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         setSelection : function(from, to) {
 
-         
 
-             this.cm.setSelection(from, to);
 
-         
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 获取光标选中的文本
 
-          * Get the texts from cursor selected
 
-          * 
 
-          * @returns {String}         返回选中文本的字符串形式
 
-          */
 
-         
 
-         getSelection : function() {
 
-             return this.cm.getSelection();
 
-         },
 
-         
 
-         /**
 
-          * 设置光标选中的文本范围
 
-          * Set the cursor selection ranges
 
-          * 
 
-          * @param   {Array}    ranges  cursor selection ranges array
 
-          * @returns {Array}            return this
 
-          */
 
-         
 
-         setSelections : function(ranges) {
 
-             this.cm.setSelections(ranges);
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 获取光标选中的文本范围
 
-          * Get the cursor selection ranges
 
-          * 
 
-          * @returns {Array}         return selection ranges array
 
-          */
 
-         
 
-         getSelections : function() {
 
-             return this.cm.getSelections();
 
-         },
 
-         
 
-         /**
 
-          * 替换当前光标选中的文本或在当前光标处插入新字符
 
-          * Replace the text at the current cursor selected or insert a new character at the current cursor position
 
-          * 
 
-          * @param   {String}    value  要插入的字符值
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         replaceSelection : function(value) {
 
-             this.cm.replaceSelection(value);
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 在当前光标处插入新字符
 
-          * Insert a new character at the current cursor position
 
-          *
 
-          * 同replaceSelection()方法
 
-          * With the replaceSelection() method
 
-          * 
 
-          * @param   {String}    value  要插入的字符值
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         insertValue : function(value) {
 
-             this.replaceSelection(value);
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 追加markdown
 
-          * append Markdown to editor
 
-          * 
 
-          * @param   {String}    md     要追加的markdown源文档
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         appendMarkdown : function(md) {
 
-             var settings = this.settings;
 
-             var cm       = this.cm;
 
-             
 
-             cm.setValue(cm.getValue() + md);
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 设置和传入编辑器的markdown源文档
 
-          * Set Markdown source document
 
-          * 
 
-          * @param   {String}    md     要传入的markdown源文档
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         setMarkdown : function(md) {
 
-             this.cm.setValue(md || this.settings.markdown);
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 获取编辑器的markdown源文档
 
-          * Set Editor.md markdown/CodeMirror value
 
-          * 
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         getMarkdown : function() {
 
-             return this.cm.getValue();
 
-         },
 
-         
 
-         /**
 
-          * 获取编辑器的源文档
 
-          * Get CodeMirror value
 
-          * 
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         getValue : function() {
 
-             return this.cm.getValue();
 
-         },
 
-         
 
-         /**
 
-          * 设置编辑器的源文档
 
-          * Set CodeMirror value
 
-          * 
 
-          * @param   {String}     value   set code/value/string/text
 
-          * @returns {editormd}           返回editormd的实例对象
 
-          */
 
-         
 
-         setValue : function(value) {
 
-             this.cm.setValue(value);
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 清空编辑器
 
-          * Empty CodeMirror editor container
 
-          * 
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         clear : function() {
 
-             this.cm.setValue("");
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 获取解析后存放在Textarea的HTML源码
 
-          * Get parsed html code from Textarea
 
-          * 
 
-          * @returns {String}               返回HTML源码
 
-          */
 
-         
 
-         getHTML : function() {
 
-             if (!this.settings.saveHTMLToTextarea)
 
-             {
 
-                 alert("Error: settings.saveHTMLToTextarea == false");
 
-                 return false;
 
-             }
 
-             
 
-             return this.htmlTextarea.val();
 
-         },
 
-         
 
-         /**
 
-          * getHTML()的别名
 
-          * getHTML (alias)
 
-          * 
 
-          * @returns {String}           Return html code 返回HTML源码
 
-          */
 
-         
 
-         getTextareaSavedHTML : function() {
 
-             return this.getHTML();
 
-         },
 
-         
 
-         /**
 
-          * 获取预览窗口的HTML源码
 
-          * Get html from preview container
 
-          * 
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         getPreviewedHTML : function() {
 
-             if (!this.settings.watch)
 
-             {
 
-                 alert("Error: settings.watch == false");
 
-                 return false;
 
-             }
 
-             
 
-             return this.previewContainer.html();
 
-         },
 
-         
 
-         /**
 
-          * 开启实时预览
 
-          * Enable real-time watching
 
-          * 
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         watch : function(callback) {     
 
-             var settings        = this.settings;
 
-             
 
-             if ($.inArray(settings.mode, ["gfm", "markdown"]) < 0)
 
-             {
 
-                 return this;
 
-             }
 
-             
 
-             this.state.watching = settings.watch = true;
 
-             this.preview.show();
 
-             
 
-             if (this.toolbar)
 
-             {
 
-                 var watchIcon   = settings.toolbarIconsClass.watch;
 
-                 var unWatchIcon = settings.toolbarIconsClass.unwatch;
 
-                 
 
-                 var icon        = this.toolbar.find(".fa[name=watch]");
 
-                 icon.parent().attr("title", settings.lang.toolbar.watch);
 
-                 icon.removeClass(unWatchIcon).addClass(watchIcon);
 
-             }
 
-             
 
-             this.codeMirror.css("border-right", "1px solid #ddd").width(this.editor.width() / 2); 
 
-             
 
-             timer = 0;
 
-             
 
-             this.save().resize();
 
-             
 
-             if (!settings.onwatch)
 
-             {
 
-                 settings.onwatch = callback || function() {};
 
-             }
 
-             
 
-             $.proxy(settings.onwatch, this)();
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 关闭实时预览
 
-          * Disable real-time watching
 
-          * 
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         unwatch : function(callback) {
 
-             var settings        = this.settings;
 
-             this.state.watching = settings.watch = false;
 
-             this.preview.hide();
 
-             
 
-             if (this.toolbar) 
 
-             {
 
-                 var watchIcon   = settings.toolbarIconsClass.watch;
 
-                 var unWatchIcon = settings.toolbarIconsClass.unwatch;
 
-                 
 
-                 var icon    = this.toolbar.find(".fa[name=watch]");
 
-                 icon.parent().attr("title", settings.lang.toolbar.unwatch);
 
-                 icon.removeClass(watchIcon).addClass(unWatchIcon);
 
-             }
 
-             
 
-             this.codeMirror.css("border-right", "none").width(this.editor.width());
 
-             
 
-             this.resize();
 
-             
 
-             if (!settings.onunwatch)
 
-             {
 
-                 settings.onunwatch = callback || function() {};
 
-             }
 
-             
 
-             $.proxy(settings.onunwatch, this)();
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 显示编辑器
 
-          * Show editor
 
-          * 
 
-          * @param   {Function} [callback=function()] 回调函数
 
-          * @returns {editormd}                       返回editormd的实例对象
 
-          */
 
-         
 
-         show : function(callback) {
 
-             callback  = callback || function() {};
 
-             
 
-             var _this = this;
 
-             this.editor.show(0, function() {
 
-                 $.proxy(callback, _this)();
 
-             });
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 隐藏编辑器
 
-          * Hide editor
 
-          * 
 
-          * @param   {Function} [callback=function()] 回调函数
 
-          * @returns {editormd}                       返回editormd的实例对象
 
-          */
 
-         
 
-         hide : function(callback) {
 
-             callback  = callback || function() {};
 
-             
 
-             var _this = this;
 
-             this.editor.hide(0, function() {
 
-                 $.proxy(callback, _this)();
 
-             });
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 隐藏编辑器部分,只预览HTML
 
-          * Enter preview html state
 
-          * 
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         previewing : function() {
 
-             
 
-             var _this            = this;
 
-             var editor           = this.editor;
 
-             var preview          = this.preview;
 
-             var toolbar          = this.toolbar;
 
-             var settings         = this.settings;
 
-             var codeMirror       = this.codeMirror;
 
-             var previewContainer = this.previewContainer;
 
-             
 
-             if ($.inArray(settings.mode, ["gfm", "markdown"]) < 0) {
 
-                 return this;
 
-             }
 
-             
 
-             if (settings.toolbar && toolbar) {
 
-                 toolbar.toggle();
 
-                 toolbar.find(".fa[name=preview]").toggleClass("active");
 
-             }
 
-             
 
-             codeMirror.toggle();
 
-             
 
-             var escHandle = function(event) {
 
-                 if (event.shiftKey && event.keyCode === 27) {
 
-                     _this.previewed();
 
-                 }
 
-             };
 
-             if (codeMirror.css("display") === "none") // 为了兼容Zepto,而不使用codeMirror.is(":hidden")
 
-             {
 
-                 this.state.preview = true;
 
-                 if (this.state.fullscreen) {
 
-                     preview.css("background", "#fff");
 
-                 }
 
-                 
 
-                 editor.find("." + this.classPrefix + "preview-close-btn").show().bind(editormd.mouseOrTouch("click", "touchend"), function(){
 
-                     _this.previewed();
 
-                 });
 
-             
 
-                 if (!settings.watch)
 
-                 {
 
-                     this.save();
 
-                 } 
 
-                 else 
 
-                 {
 
-                     previewContainer.css("padding", "");
 
-                 }
 
-                 
 
-                 previewContainer.addClass(this.classPrefix + "preview-active");
 
-                 preview.show().css({
 
-                     position  : "",
 
-                     top       : 0,
 
-                     width     : editor.width(),
 
-                     height    : (settings.autoHeight && !this.state.fullscreen) ? "auto" : editor.height()
 
-                 });
 
-                 
 
-                 if (this.state.loaded)
 
-                 {
 
-                     $.proxy(settings.onpreviewing, this)();
 
-                 }
 
-                 $(window).bind("keyup", escHandle);
 
-             } 
 
-             else 
 
-             {
 
-                 $(window).unbind("keyup", escHandle);
 
-                 this.previewed();
 
-             }
 
-         },
 
-         
 
-         /**
 
-          * 显示编辑器部分,退出只预览HTML
 
-          * Exit preview html state
 
-          * 
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         previewed : function() {
 
-             
 
-             var editor           = this.editor;
 
-             var preview          = this.preview;
 
-             var toolbar          = this.toolbar;
 
-             var settings         = this.settings;
 
-             var previewContainer = this.previewContainer;
 
-             var previewCloseBtn  = editor.find("." + this.classPrefix + "preview-close-btn");
 
-             this.state.preview   = false;
 
-             
 
-             this.codeMirror.show();
 
-             
 
-             if (settings.toolbar) {
 
-                 toolbar.show();
 
-             }
 
-             
 
-             preview[(settings.watch) ? "show" : "hide"]();
 
-             
 
-             previewCloseBtn.hide().unbind(editormd.mouseOrTouch("click", "touchend"));
 
-                 
 
-             previewContainer.removeClass(this.classPrefix + "preview-active");
 
-                 
 
-             if (settings.watch)
 
-             {
 
-                 previewContainer.css("padding", "20px");
 
-             }
 
-             
 
-             preview.css({ 
 
-                 background : null,
 
-                 position   : "absolute",
 
-                 width      : editor.width() / 2,
 
-                 height     : (settings.autoHeight && !this.state.fullscreen) ? "auto" : editor.height() - toolbar.height(),
 
-                 top        : (settings.toolbar)    ? toolbar.height() : 0
 
-             });
 
-             if (this.state.loaded)
 
-             {
 
-                 $.proxy(settings.onpreviewed, this)();
 
-             }
 
-             
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 编辑器全屏显示
 
-          * Fullscreen show
 
-          * 
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         fullscreen : function() {
 
-             
 
-             var _this            = this;
 
-             var state            = this.state;
 
-             var editor           = this.editor;
 
-             var preview          = this.preview;
 
-             var toolbar          = this.toolbar;
 
-             var settings         = this.settings;
 
-             var fullscreenClass  = this.classPrefix + "fullscreen";
 
-             
 
-             if (toolbar) {
 
-                 toolbar.find(".fa[name=fullscreen]").parent().toggleClass("active"); 
 
-             }
 
-             
 
-             var escHandle = function(event) {
 
-                 if (!event.shiftKey && event.keyCode === 27) 
 
-                 {
 
-                     if (state.fullscreen)
 
-                     {
 
-                         _this.fullscreenExit();
 
-                     }
 
-                 }
 
-             };
 
-             if (!editor.hasClass(fullscreenClass)) 
 
-             {
 
-                 state.fullscreen = true;
 
-                 $("html,body").css("overflow", "hidden");
 
-                 
 
-                 editor.css({
 
-                     width    : $(window).width(),
 
-                     height   : $(window).height()
 
-                 }).addClass(fullscreenClass);
 
-                 this.resize();
 
-     
 
-                 $.proxy(settings.onfullscreen, this)();
 
-                 $(window).bind("keyup", escHandle);
 
-             }
 
-             else
 
-             {           
 
-                 $(window).unbind("keyup", escHandle); 
 
-                 this.fullscreenExit();
 
-             }
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 编辑器退出全屏显示
 
-          * Exit fullscreen state
 
-          * 
 
-          * @returns {editormd}         返回editormd的实例对象
 
-          */
 
-         
 
-         fullscreenExit : function() {
 
-             
 
-             var editor            = this.editor;
 
-             var settings          = this.settings;
 
-             var toolbar           = this.toolbar;
 
-             var fullscreenClass   = this.classPrefix + "fullscreen";  
 
-             
 
-             this.state.fullscreen = false;
 
-             
 
-             if (toolbar) {
 
-                 toolbar.find(".fa[name=fullscreen]").parent().removeClass("active"); 
 
-             }
 
-             $("html,body").css("overflow", "");
 
-             editor.css({
 
-                 width    : editor.data("oldWidth"),
 
-                 height   : editor.data("oldHeight")
 
-             }).removeClass(fullscreenClass);
 
-             this.resize();
 
-             
 
-             $.proxy(settings.onfullscreenExit, this)();
 
-             return this;
 
-         },
 
-         
 
-         /**
 
-          * 加载并执行插件
 
-          * Load and execute the plugin
 
-          * 
 
-          * @param   {String}     name    plugin name / function name
 
-          * @param   {String}     path    plugin load path
 
-          * @returns {editormd}           返回editormd的实例对象
 
-          */
 
-         
 
-         executePlugin : function(name, path) {
 
-             
 
-             var _this    = this;
 
-             var cm       = this.cm;
 
-             var settings = this.settings;
 
-             
 
-             path = settings.pluginPath + path;
 
-             
 
-             if (typeof define === "function") 
 
-             {            
 
-                 if (typeof this[name] === "undefined")
 
-                 {
 
-                     alert("Error: " + name + " plugin is not found, you are not load this plugin.");
 
-                     
 
-                     return this;
 
-                 }
 
-                 
 
-                 this[name](cm);
 
-                 
 
-                 return this;
 
-             }
 
-             
 
-             if ($.inArray(path, editormd.loadFiles.plugin) < 0)
 
-             {
 
-                 editormd.loadPlugin(path, function() {
 
-                     editormd.loadPlugins[name] = _this[name];
 
-                     _this[name](cm);
 
-                 });
 
-             }
 
-             else
 
-             {
 
-                 $.proxy(editormd.loadPlugins[name], this)(cm);
 
-             }
 
-             
 
-             return this;
 
-         },
 
-                 
 
-         /**
 
-          * 搜索替换
 
-          * Search & replace
 
-          * 
 
-          * @param   {String}     command    CodeMirror serach commands, "find, fintNext, fintPrev, clearSearch, replace, replaceAll"
 
-          * @returns {editormd}              return this
 
-          */
 
-         
 
-         search : function(command) {
 
-             var settings = this.settings;
 
-             
 
-             if (!settings.searchReplace)
 
-             {
 
-                 alert("Error: settings.searchReplace == false");
 
-                 return this;
 
-             }
 
-             
 
-             if (!settings.readOnly)
 
-             {
 
-                 this.cm.execCommand(command || "find");
 
-             }
 
-             
 
-             return this;
 
-         },
 
-         
 
-         searchReplace : function() {            
 
-             this.search("replace");
 
-             
 
-             return this;
 
-         },
 
-         
 
-         searchReplaceAll : function() {          
 
-             this.search("replaceAll");
 
-             
 
-             return this;
 
-         }
 
-     };
 
-     
 
-     editormd.fn.init.prototype = editormd.fn; 
 
-    
 
-     /**
 
-      * 锁屏
 
-      * lock screen when dialog opening
 
-      * 
 
-      * @returns {void}
 
-      */
 
-     editormd.dialogLockScreen = function() {
 
-         var settings = this.settings || {dialogLockScreen : true};
 
-         
 
-         if (settings.dialogLockScreen) 
 
-         {            
 
-             $("html,body").css("overflow", "hidden");
 
-             this.resize();
 
-         }
 
-     };
 
-    
 
-     /**
 
-      * 显示透明背景层
 
-      * Display mask layer when dialog opening
 
-      * 
 
-      * @param   {Object}     dialog    dialog jQuery object
 
-      * @returns {void}
 
-      */
 
-     
 
-     editormd.dialogShowMask = function(dialog) {
 
-         var editor   = this.editor;
 
-         var settings = this.settings || {dialogShowMask : true};
 
-         
 
-         dialog.css({
 
-             top  : ($(window).height() - dialog.height()) / 2 + "px",
 
-             left : ($(window).width()  - dialog.width())  / 2 + "px"
 
-         });
 
-         if (settings.dialogShowMask) {
 
-             editor.children("." + this.classPrefix + "mask").css("z-index", parseInt(dialog.css("z-index")) - 1).show();
 
-         }
 
-     };
 
-     editormd.toolbarHandlers = {
 
-         undo : function() {
 
-             this.cm.undo();
 
-         },
 
-         
 
-         redo : function() {
 
-             this.cm.redo();
 
-         },
 
-         
 
-         bold : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             cm.replaceSelection("**" + selection + "**");
 
-             if(selection === "") {
 
-                 cm.setCursor(cursor.line, cursor.ch + 2);
 
-             }
 
-         },
 
-         
 
-         del : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             cm.replaceSelection("~~" + selection + "~~");
 
-             if(selection === "") {
 
-                 cm.setCursor(cursor.line, cursor.ch + 2);
 
-             }
 
-         },
 
-         italic : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             cm.replaceSelection("*" + selection + "*");
 
-             if(selection === "") {
 
-                 cm.setCursor(cursor.line, cursor.ch + 1);
 
-             }
 
-         },
 
-         quote : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             if (cursor.ch !== 0)
 
-             {
 
-                 cm.setCursor(cursor.line, 0);
 
-                 cm.replaceSelection("> " + selection);
 
-                 cm.setCursor(cursor.line, cursor.ch + 2);
 
-             }
 
-             else
 
-             {
 
-                 cm.replaceSelection("> " + selection);
 
-             }
 
-             //cm.replaceSelection("> " + selection);
 
-             //cm.setCursor(cursor.line, (selection === "") ? cursor.ch + 2 : cursor.ch + selection.length + 2);
 
-         },
 
-         
 
-         ucfirst : function() {
 
-             var cm         = this.cm;
 
-             var selection  = cm.getSelection();
 
-             var selections = cm.listSelections();
 
-             cm.replaceSelection(editormd.firstUpperCase(selection));
 
-             cm.setSelections(selections);
 
-         },
 
-         
 
-         ucwords : function() {
 
-             var cm         = this.cm;
 
-             var selection  = cm.getSelection();
 
-             var selections = cm.listSelections();
 
-             cm.replaceSelection(editormd.wordsFirstUpperCase(selection));
 
-             cm.setSelections(selections);
 
-         },
 
-         
 
-         uppercase : function() {
 
-             var cm         = this.cm;
 
-             var selection  = cm.getSelection();
 
-             var selections = cm.listSelections();
 
-             cm.replaceSelection(selection.toUpperCase());
 
-             cm.setSelections(selections);
 
-         },
 
-         
 
-         lowercase : function() {
 
-             var cm         = this.cm;
 
-             var cursor     = cm.getCursor();
 
-             var selection  = cm.getSelection();
 
-             var selections = cm.listSelections();
 
-             
 
-             cm.replaceSelection(selection.toLowerCase());
 
-             cm.setSelections(selections);
 
-         },
 
-         h1 : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             if (cursor.ch !== 0)
 
-             {
 
-                 cm.setCursor(cursor.line, 0);
 
-                 cm.replaceSelection("# " + selection);
 
-                 cm.setCursor(cursor.line, cursor.ch + 2);
 
-             }
 
-             else
 
-             {
 
-                 cm.replaceSelection("# " + selection);
 
-             }
 
-         },
 
-         h2 : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             if (cursor.ch !== 0)
 
-             {
 
-                 cm.setCursor(cursor.line, 0);
 
-                 cm.replaceSelection("## " + selection);
 
-                 cm.setCursor(cursor.line, cursor.ch + 3);
 
-             }
 
-             else
 
-             {
 
-                 cm.replaceSelection("## " + selection);
 
-             }
 
-         },
 
-         h3 : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             if (cursor.ch !== 0)
 
-             {
 
-                 cm.setCursor(cursor.line, 0);
 
-                 cm.replaceSelection("### " + selection);
 
-                 cm.setCursor(cursor.line, cursor.ch + 4);
 
-             }
 
-             else
 
-             {
 
-                 cm.replaceSelection("### " + selection);
 
-             }
 
-         },
 
-         h4 : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             if (cursor.ch !== 0)
 
-             {
 
-                 cm.setCursor(cursor.line, 0);
 
-                 cm.replaceSelection("#### " + selection);
 
-                 cm.setCursor(cursor.line, cursor.ch + 5);
 
-             }
 
-             else
 
-             {
 
-                 cm.replaceSelection("#### " + selection);
 
-             }
 
-         },
 
-         h5 : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             if (cursor.ch !== 0)
 
-             {
 
-                 cm.setCursor(cursor.line, 0);
 
-                 cm.replaceSelection("##### " + selection);
 
-                 cm.setCursor(cursor.line, cursor.ch + 6);
 
-             }
 
-             else
 
-             {
 
-                 cm.replaceSelection("##### " + selection);
 
-             }
 
-         },
 
-         h6 : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             if (cursor.ch !== 0)
 
-             {
 
-                 cm.setCursor(cursor.line, 0);
 
-                 cm.replaceSelection("###### " + selection);
 
-                 cm.setCursor(cursor.line, cursor.ch + 7);
 
-             }
 
-             else
 
-             {
 
-                 cm.replaceSelection("###### " + selection);
 
-             }
 
-         },
 
-         "list-ul" : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             if (selection === "") 
 
-             {
 
-                 cm.replaceSelection("- " + selection);
 
-             } 
 
-             else 
 
-             {
 
-                 var selectionText = selection.split("\n");
 
-                 for (var i = 0, len = selectionText.length; i < len; i++) 
 
-                 {
 
-                     selectionText[i] = (selectionText[i] === "") ? "" : "- " + selectionText[i];
 
-                 }
 
-                 cm.replaceSelection(selectionText.join("\n"));
 
-             }
 
-         },
 
-         "list-ol" : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             if(selection === "") 
 
-             {
 
-                 cm.replaceSelection("1. " + selection);
 
-             }
 
-             else
 
-             {
 
-                 var selectionText = selection.split("\n");
 
-                 for (var i = 0, len = selectionText.length; i < len; i++) 
 
-                 {
 
-                     selectionText[i] = (selectionText[i] === "") ? "" : (i+1) + ". " + selectionText[i];
 
-                 }
 
-                 cm.replaceSelection(selectionText.join("\n"));
 
-             }
 
-         },
 
-         hr : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             cm.replaceSelection(((cursor.ch !== 0) ? "\n\n" : "\n") + "------------\n\n");
 
-         },
 
-         tex : function() {
 
-             if (!this.settings.tex)
 
-             {
 
-                 alert("settings.tex === false");
 
-                 return this;
 
-             }
 
-             
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             cm.replaceSelection("$$" + selection + "$$");
 
-             if(selection === "") {
 
-                 cm.setCursor(cursor.line, cursor.ch + 2);
 
-             }
 
-         },
 
-         link : function() {
 
-             this.executePlugin("linkDialog", "link-dialog/link-dialog");
 
-         },
 
-         "reference-link" : function() {
 
-             this.executePlugin("referenceLinkDialog", "reference-link-dialog/reference-link-dialog");
 
-         },
 
-         pagebreak : function() {
 
-             if (!this.settings.pageBreak)
 
-             {
 
-                 alert("settings.pageBreak === false");
 
-                 return this;
 
-             }
 
-             
 
-             var cm        = this.cm;
 
-             var selection = cm.getSelection();
 
-             cm.replaceSelection("\r\n[========]\r\n");
 
-         },
 
-         image : function() {
 
-             this.executePlugin("imageDialog", "image-dialog/image-dialog");
 
-         },
 
-         
 
-         code : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             cm.replaceSelection("`" + selection + "`");
 
-             if (selection === "") {
 
-                 cm.setCursor(cursor.line, cursor.ch + 1);
 
-             }
 
-         },
 
-         "code-block" : function() {
 
-             this.executePlugin("codeBlockDialog", "code-block-dialog/code-block-dialog");            
 
-         },
 
-         "preformatted-text" : function() {
 
-             this.executePlugin("preformattedTextDialog", "preformatted-text-dialog/preformatted-text-dialog");
 
-         },
 
-         
 
-         table : function() {
 
-             this.executePlugin("tableDialog", "table-dialog/table-dialog");         
 
-         },
 
-         
 
-         datetime : function() {
 
-             var cm        = this.cm;
 
-             var selection = cm.getSelection();
 
-             var date      = new Date();
 
-             var langName  = this.settings.lang.name;
 
-             var datefmt   = editormd.dateFormat() + " " + editormd.dateFormat((langName === "zh-cn" || langName === "zh-tw") ? "cn-week-day" : "week-day");
 
-             cm.replaceSelection(datefmt);
 
-         },
 
-         
 
-         emoji : function() {
 
-             this.executePlugin("emojiDialog", "emoji-dialog/emoji-dialog");
 
-         },
 
-                 
 
-         "html-entities" : function() {
 
-             this.executePlugin("htmlEntitiesDialog", "html-entities-dialog/html-entities-dialog");
 
-         },
 
-                 
 
-         "goto-line" : function() {
 
-             this.executePlugin("gotoLineDialog", "goto-line-dialog/goto-line-dialog");
 
-         },
 
-         watch : function() {    
 
-             this[this.settings.watch ? "unwatch" : "watch"]();
 
-         },
 
-         preview : function() {
 
-             this.previewing();
 
-         },
 
-         fullscreen : function() {
 
-             this.fullscreen();
 
-         },
 
-         clear : function() {
 
-             this.clear();
 
-         },
 
-         
 
-         search : function() {
 
-             this.search();
 
-         },
 
-         help : function() {
 
-             this.executePlugin("helpDialog", "help-dialog/help-dialog");
 
-         },
 
-         info : function() {
 
-             this.showInfoDialog();
 
-         }
 
-     };
 
-     
 
-     editormd.keyMaps = {
 
-         "Ctrl-1"       : "h1",
 
-         "Ctrl-2"       : "h2",
 
-         "Ctrl-3"       : "h3",
 
-         "Ctrl-4"       : "h4",
 
-         "Ctrl-5"       : "h5",
 
-         "Ctrl-6"       : "h6",
 
-         "Ctrl-B"       : "bold",  // if this is string ==  editormd.toolbarHandlers.xxxx
 
-         "Ctrl-D"       : "datetime",
 
-         
 
-         "Ctrl-E"       : function() { // emoji
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             
 
-             if (!this.settings.emoji)
 
-             {
 
-                 alert("Error: settings.emoji == false");
 
-                 return ;
 
-             }
 
-             cm.replaceSelection(":" + selection + ":");
 
-             if (selection === "") {
 
-                 cm.setCursor(cursor.line, cursor.ch + 1);
 
-             }
 
-         },
 
-         "Ctrl-Alt-G"   : "goto-line",
 
-         "Ctrl-H"       : "hr",
 
-         "Ctrl-I"       : "italic",
 
-         "Ctrl-K"       : "code",
 
-         
 
-         "Ctrl-L"        : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             
 
-             var title = (selection === "") ? "" : " \""+selection+"\"";
 
-             cm.replaceSelection("[" + selection + "]("+title+")");
 
-             if (selection === "") {
 
-                 cm.setCursor(cursor.line, cursor.ch + 1);
 
-             }
 
-         },
 
-         "Ctrl-U"         : "list-ul",
 
-         
 
-         "Shift-Ctrl-A"   : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             
 
-             if (!this.settings.atLink)
 
-             {
 
-                 alert("Error: settings.atLink == false");
 
-                 return ;
 
-             }
 
-             cm.replaceSelection("@" + selection);
 
-             if (selection === "") {
 
-                 cm.setCursor(cursor.line, cursor.ch + 1);
 
-             }
 
-         },
 
-         
 
-         "Shift-Ctrl-C"     : "code",
 
-         "Shift-Ctrl-Q"     : "quote",
 
-         "Shift-Ctrl-S"     : "del",
 
-         "Shift-Ctrl-K"     : "tex",  // KaTeX
 
-         
 
-         "Shift-Alt-C"      : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             
 
-             cm.replaceSelection(["```", selection, "```"].join("\n"));
 
-             if (selection === "") {
 
-                 cm.setCursor(cursor.line, cursor.ch + 3);
 
-             } 
 
-         },
 
-         
 
-         "Shift-Ctrl-Alt-C" : "code-block",
 
-         "Shift-Ctrl-H"     : "html-entities",
 
-         "Shift-Alt-H"      : "help",
 
-         "Shift-Ctrl-E"     : "emoji",
 
-         "Shift-Ctrl-U"     : "uppercase",
 
-         "Shift-Alt-U"      : "ucwords",
 
-         "Shift-Ctrl-Alt-U" : "ucfirst",
 
-         "Shift-Alt-L"      : "lowercase",
 
-         
 
-         "Shift-Ctrl-I"     : function() {
 
-             var cm        = this.cm;
 
-             var cursor    = cm.getCursor();
 
-             var selection = cm.getSelection();
 
-             
 
-             var title = (selection === "") ? "" : " \""+selection+"\"";
 
-             cm.replaceSelection("");
 
-             if (selection === "") {
 
-                 cm.setCursor(cursor.line, cursor.ch + 4);
 
-             }
 
-         },
 
-         
 
-         "Shift-Ctrl-Alt-I" : "image",
 
-         "Shift-Ctrl-L"     : "link",
 
-         "Shift-Ctrl-O"     : "list-ol",
 
-         "Shift-Ctrl-P"     : "preformatted-text",
 
-         "Shift-Ctrl-T"     : "table",
 
-         "Shift-Alt-P"      : "pagebreak",
 
-         "F9"               : "watch",
 
-         "F10"              : "preview",
 
-         "F11"              : "fullscreen",
 
-     };
 
-     
 
-     /**
 
-      * 清除字符串两边的空格
 
-      * Clear the space of strings both sides.
 
-      * 
 
-      * @param   {String}    str            string
 
-      * @returns {String}                   trimed string    
 
-      */
 
-     
 
-     var trim = function(str) {
 
-         return (!String.prototype.trim) ? str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "") : str.trim();
 
-     };
 
-     
 
-     editormd.trim = trim;
 
-     
 
-     /**
 
-      * 所有单词首字母大写
 
-      * Words first to uppercase
 
-      * 
 
-      * @param   {String}    str            string
 
-      * @returns {String}                   string
 
-      */
 
-     
 
-     var ucwords = function (str) {
 
-         return str.toLowerCase().replace(/\b(\w)|\s(\w)/g, function($1) {  
 
-             return $1.toUpperCase();
 
-         });
 
-     };
 
-     
 
-     editormd.ucwords = editormd.wordsFirstUpperCase = ucwords;
 
-     
 
-     /**
 
-      * 字符串首字母大写
 
-      * Only string first char to uppercase
 
-      * 
 
-      * @param   {String}    str            string
 
-      * @returns {String}                   string
 
-      */
 
-     
 
-     var firstUpperCase = function(str) {        
 
-         return str.toLowerCase().replace(/\b(\w)/, function($1){
 
-             return $1.toUpperCase();
 
-         });
 
-     };
 
-     
 
-     var ucfirst = firstUpperCase;
 
-     
 
-     editormd.firstUpperCase = editormd.ucfirst = firstUpperCase;
 
-     
 
-     editormd.urls = {
 
-         atLinkBase : "https://github.com/"
 
-     };
 
-     
 
-     editormd.regexs = {
 
-         atLink        : /@(\w+)/g,
 
-         email         : /(\w+)@(\w+)\.(\w+)\.?(\w+)?/g,
 
-         emailLink     : /(mailto:)?([\w\.\_]+)@(\w+)\.(\w+)\.?(\w+)?/g,
 
-         emoji         : /:([\w\+-]+):/g,
 
-         emojiDatetime : /(\d{2}:\d{2}:\d{2})/g,
 
-         twemoji       : /:(tw-([\w]+)-?(\w+)?):/g,
 
-         fontAwesome   : /:(fa-([\w]+)(-(\w+)){0,}):/g,
 
-         editormdLogo  : /:(editormd-logo-?(\w+)?):/g,
 
-         pageBreak     : /^\[[=]{8,}\]$/
 
-     };
 
-     // Emoji graphics files url path
 
-     editormd.emoji     = {
 
-         path  : "http://www.emoji-cheat-sheet.com/graphics/emojis/",
 
-         ext   : ".png"
 
-     };
 
-     // Twitter Emoji (Twemoji)  graphics files url path    
 
-     editormd.twemoji = {
 
-         path : "http://twemoji.maxcdn.com/36x36/",
 
-         ext  : ".png"
 
-     };
 
-     /**
 
-      * 自定义marked的解析器
 
-      * Custom Marked renderer rules
 
-      * 
 
-      * @param   {Array}    markdownToC     传入用于接收TOC的数组
 
-      * @returns {Renderer} markedRenderer  返回marked的Renderer自定义对象
 
-      */
 
-     editormd.markedRenderer = function(markdownToC, options) {
 
-         var defaults = {
 
-             toc                  : true,           // Table of contents
 
-             tocm                 : false,
 
-             tocStartLevel        : 1,              // Said from H1 to create ToC  
 
-             pageBreak            : true,
 
-             atLink               : true,           // for @link
 
-             emailLink            : true,           // for mail address auto link
 
-             taskList             : false,          // Enable Github Flavored Markdown task lists
 
-             emoji                : false,          // :emoji: , Support Twemoji, fontAwesome, Editor.md logo emojis.
 
-             tex                  : false,          // TeX(LaTeX), based on KaTeX
 
-             flowChart            : false,          // flowChart.js only support IE9+
 
-             sequenceDiagram      : false,          // sequenceDiagram.js only support IE9+
 
-         };
 
-         
 
-         var settings        = $.extend(defaults, options || {});    
 
-         var marked          = editormd.$marked;
 
-         var markedRenderer  = new marked.Renderer();
 
-         markdownToC         = markdownToC || [];        
 
-             
 
-         var regexs          = editormd.regexs;
 
-         var atLinkReg       = regexs.atLink;
 
-         var emojiReg        = regexs.emoji;
 
-         var emailReg        = regexs.email;
 
-         var emailLinkReg    = regexs.emailLink;
 
-         var twemojiReg      = regexs.twemoji;
 
-         var faIconReg       = regexs.fontAwesome;
 
-         var editormdLogoReg = regexs.editormdLogo;
 
-         var pageBreakReg    = regexs.pageBreak;
 
-         markedRenderer.emoji = function(text) {
 
-             
 
-             text = text.replace(editormd.regexs.emojiDatetime, function($1) {           
 
-                 return $1.replace(/:/g, ":");
 
-             });
 
-             
 
-             var matchs = text.match(emojiReg);
 
-             if (!matchs || !settings.emoji) {
 
-                 return text;
 
-             }
 
-             for (var i = 0, len = matchs.length; i < len; i++)
 
-             {            
 
-                 if (matchs[i] === ":+1:") {
 
-                     matchs[i] = ":\\+1:";
 
-                 }
 
-                 text = text.replace(new RegExp(matchs[i]), function($1, $2){
 
-                     var faMatchs = $1.match(faIconReg);
 
-                     var name     = $1.replace(/:/g, "");
 
-                     if (faMatchs)
 
-                     {                        
 
-                         for (var fa = 0, len1 = faMatchs.length; fa < len1; fa++)
 
-                         {
 
-                             var faName = faMatchs[fa].replace(/:/g, "");
 
-                             
 
-                             return "<i class=\"fa " + faName + " fa-emoji\" title=\"" + faName.replace("fa-", "") + "\"></i>";
 
-                         }
 
-                     }
 
-                     else
 
-                     {
 
-                         var emdlogoMathcs = $1.match(editormdLogoReg);
 
-                         var twemojiMatchs = $1.match(twemojiReg);
 
-                         if (emdlogoMathcs)                                        
 
-                         {                            
 
-                             for (var x = 0, len2 = emdlogoMathcs.length; x < len2; x++)
 
-                             {
 
-                                 var logoName = emdlogoMathcs[x].replace(/:/g, "");
 
-                                 return "<i class=\"" + logoName + "\" title=\"Editor.md logo (" + logoName + ")\"></i>";
 
-                             }
 
-                         }
 
-                         else if (twemojiMatchs) 
 
-                         {
 
-                             for (var t = 0, len3 = twemojiMatchs.length; t < len3; t++)
 
-                             {
 
-                                 var twe = twemojiMatchs[t].replace(/:/g, "").replace("tw-", "");
 
-                                 return "<img src=\"" + editormd.twemoji.path + twe + editormd.twemoji.ext + "\" title=\"twemoji-" + twe + "\" alt=\"twemoji-" + twe + "\" class=\"emoji twemoji\" />";
 
-                             }
 
-                         }
 
-                         else
 
-                         {
 
-                             var src = (name === "+1") ? "plus1" : name;
 
-                             src     = (src === "black_large_square") ? "black_square" : src;
 
-                             src     = (src === "moon") ? "waxing_gibbous_moon" : src;
 
-                             return "<img src=\"" + editormd.emoji.path + src + editormd.emoji.ext + "\" class=\"emoji\" title=\":" + name + ":\" alt=\":" + name + ":\" />";
 
-                         }
 
-                     }
 
-                 });
 
-             }
 
-             return text;
 
-         };
 
-         markedRenderer.atLink = function(text) {
 
-             if (atLinkReg.test(text))
 
-             { 
 
-                 if (settings.atLink) 
 
-                 {
 
-                     text = text.replace(emailReg, function($1, $2, $3, $4) {
 
-                         return $1.replace(/@/g, "_#_@_#_");
 
-                     });
 
-                     text = text.replace(atLinkReg, function($1, $2) {
 
-                         return "<a href=\"" + editormd.urls.atLinkBase + "" + $2 + "\" title=\"@" + $2 + "\" class=\"at-link\">" + $1 + "</a>";
 
-                     }).replace(/_#_@_#_/g, "@");
 
-                 }
 
-                 
 
-                 if (settings.emailLink)
 
-                 {
 
-                     text = text.replace(emailLinkReg, function($1, $2, $3, $4, $5) {
 
-                         return (!$2 && $.inArray($5, "jpg|jpeg|png|gif|webp|ico|icon|pdf".split("|")) < 0) ? "<a href=\"mailto:" + $1 + "\">"+$1+"</a>" : $1;
 
-                     });
 
-                 }
 
-                 return text;
 
-             }
 
-             return text;
 
-         };
 
-                 
 
-         markedRenderer.link = function (href, title, text) {
 
-             if (this.options.sanitize) {
 
-                 try {
 
-                     var prot = decodeURIComponent(unescape(href)).replace(/[^\w:]/g,"").toLowerCase();
 
-                 } catch(e) {
 
-                     return "";
 
-                 }
 
-                 if (prot.indexOf("javascript:") === 0) {
 
-                     return "";
 
-                 }
 
-             }
 
-             var out = "<a href=\"" + href + "\"";
 
-             
 
-             if (atLinkReg.test(title) || atLinkReg.test(text))
 
-             {
 
-                 if (title)
 
-                 {
 
-                     out += " title=\"" + title.replace(/@/g, "@");
 
-                 }
 
-                 
 
-                 return out + "\">" + text.replace(/@/g, "@") + "</a>";
 
-             }
 
-             if (title) {
 
-                 out += " title=\"" + title + "\"";
 
-             }
 
-             out += ">" + text + "</a>";
 
-             return out;
 
-         };
 
-         
 
-         markedRenderer.heading = function(text, level, raw) {
 
-                     
 
-             var linkText       = text;
 
-             var hasLinkReg     = /\s*\<a\s*href\=\"(.*)\"\s*([^\>]*)\>(.*)\<\/a\>\s*/;
 
-             var getLinkTextReg = /\s*\<a\s*([^\>]+)\>([^\>]*)\<\/a\>\s*/g;
 
-             if (hasLinkReg.test(text)) 
 
-             {
 
-                 var tempText = [];
 
-                 text         = text.split(/\<a\s*([^\>]+)\>([^\>]*)\<\/a\>/);
 
-                 for (var i = 0, len = text.length; i < len; i++)
 
-                 {
 
-                     tempText.push(text[i].replace(/\s*href\=\"(.*)\"\s*/g, ""));
 
-                 }
 
-                 text = tempText.join(" ");
 
-             }
 
-             
 
-             text = trim(text);
 
-             
 
-             var escapedText    = text.toLowerCase().replace(/[^\w]+/g, "-");
 
-             var toc = {
 
-                 text  : text,
 
-                 level : level,
 
-                 slug  : escapedText
 
-             };
 
-             
 
-             var isChinese = /^[\u4e00-\u9fa5]+$/.test(text);
 
-             var id        = (isChinese) ? escape(text).replace(/\%/g, "") : text.toLowerCase().replace(/[^\w]+/g, "-");
 
-             markdownToC.push(toc);
 
-             
 
-             var headingHTML = "<h" + level + " id=\"h"+ level + "-" + this.options.headerPrefix + id +"\">";
 
-             
 
-             headingHTML    += "<a name=\"" + text + "\" class=\"reference-link\"></a>";
 
-             headingHTML    += "<span class=\"header-link octicon octicon-link\"></span>";
 
-             headingHTML    += (hasLinkReg) ? this.atLink(this.emoji(linkText)) : this.atLink(this.emoji(text));
 
-             headingHTML    += "</h" + level + ">";
 
-             return headingHTML;
 
-         };
 
-         
 
-         markedRenderer.pageBreak = function(text) {
 
-             if (pageBreakReg.test(text) && settings.pageBreak)
 
-             {
 
-                 text = "<hr style=\"page-break-after:always;\" class=\"page-break editormd-page-break\" />";
 
-             }
 
-             
 
-             return text;
 
-         };
 
-         markedRenderer.paragraph = function(text) {
 
-             var isTeXInline     = /\$\$(.*)\$\$/g.test(text);
 
-             var isTeXLine       = /^\$\$(.*)\$\$$/.test(text);
 
-             var isTeXAddClass   = (isTeXLine)     ? " class=\"" + editormd.classNames.tex + "\"" : "";
 
-             var isToC           = (settings.tocm) ? /^(\[TOC\]|\[TOCM\])$/.test(text) : /^\[TOC\]$/.test(text);
 
-             var isToCMenu       = /^\[TOCM\]$/.test(text);
 
-             
 
-             if (!isTeXLine && isTeXInline) 
 
-             {
 
-                 text = text.replace(/(\$\$([^\$]*)\$\$)+/g, function($1, $2) {
 
-                     return "<span class=\"" + editormd.classNames.tex + "\">" + $2.replace(/\$/g, "") + "</span>";
 
-                 });
 
-             } 
 
-             else 
 
-             {
 
-                 text = (isTeXLine) ? text.replace(/\$/g, "") : text;
 
-             }
 
-             
 
-             var tocHTML = "<div class=\"markdown-toc editormd-markdown-toc\">" + text + "</div>";
 
-             
 
-             return (isToC) ? ( (isToCMenu) ? "<div class=\"editormd-toc-menu\">" + tocHTML + "</div><br/>" : tocHTML )
 
-                            : ( (pageBreakReg.test(text)) ? this.pageBreak(text) : "<p" + isTeXAddClass + ">" + this.atLink(this.emoji(text)) + "</p>\n" );
 
-         };
 
-         markedRenderer.code = function (code, lang, escaped) { 
 
-             if (lang === "seq" || lang === "sequence")
 
-             {
 
-                 return "<div class=\"sequence-diagram\">" + code + "</div>";
 
-             } else  if (lang === "gantt"){
 
-                 return "<div class=\"mermain-gantt\""> + code + "</div>"
 
-             }
 
-             else if ( lang === "flow")
 
-             {
 
-                 return "<div class=\"flowchart\">" + code + "</div>";
 
-             } 
 
-             else if ( lang === "math" || lang === "latex" || lang === "katex")
 
-             {
 
-                 return "<p class=\"" + editormd.classNames.tex + "\">" + code + "</p>";
 
-             } 
 
-             else 
 
-             {
 
-                 return marked.Renderer.prototype.code.apply(this, arguments);
 
-             }
 
-         };
 
-         markedRenderer.tablecell = function(content, flags) {
 
-             var type = (flags.header) ? "th" : "td";
 
-             var tag  = (flags.align)  ? "<" + type +" style=\"text-align:" + flags.align + "\">" : "<" + type + ">";
 
-             
 
-             return tag + this.atLink(this.emoji(content)) + "</" + type + ">\n";
 
-         };
 
-         markedRenderer.listitem = function(text) {
 
-             if (settings.taskList && /^\s*\[[x\s]\]\s*/.test(text)) 
 
-             {
 
-                 text = text.replace(/^\s*\[\s\]\s*/, "<input type=\"checkbox\" class=\"task-list-item-checkbox\" /> ")
 
-                            .replace(/^\s*\[x\]\s*/,  "<input type=\"checkbox\" class=\"task-list-item-checkbox\" checked disabled /> ");
 
-                 return "<li style=\"list-style: none;\">" + this.atLink(this.emoji(text)) + "</li>";
 
-             }
 
-             else 
 
-             {
 
-                 return "<li>" + this.atLink(this.emoji(text)) + "</li>";
 
-             }
 
-         };
 
-         
 
-         return markedRenderer;
 
-     };
 
-     
 
-     /**
 
-      *
 
-      * 生成TOC(Table of Contents)
 
-      * Creating ToC (Table of Contents)
 
-      * 
 
-      * @param   {Array}    toc             从marked获取的TOC数组列表
 
-      * @param   {Element}  container       插入TOC的容器元素
 
-      * @param   {Integer}  startLevel      Hx 起始层级
 
-      * @returns {Object}   tocContainer    返回ToC列表容器层的jQuery对象元素
 
-      */
 
-     
 
-     editormd.markdownToCRenderer = function(toc, container, tocDropdown, startLevel) {
 
-         
 
-         var html        = "";    
 
-         var lastLevel   = 0;
 
-         var classPrefix = this.classPrefix;
 
-         
 
-         startLevel      = startLevel  || 1;
 
-         
 
-         for (var i = 0, len = toc.length; i < len; i++) 
 
-         {
 
-             var text  = toc[i].text;
 
-             var level = toc[i].level;
 
-             
 
-             if (level < startLevel) {
 
-                 continue;
 
-             }
 
-             
 
-             if (level > lastLevel) 
 
-             {
 
-                 html += "";
 
-             }
 
-             else if (level < lastLevel) 
 
-             {
 
-                 html += (new Array(lastLevel - level + 2)).join("</ul></li>");
 
-             } 
 
-             else 
 
-             {
 
-                 html += "</ul></li>";
 
-             }
 
-             html += "<li><a class=\"toc-level-" + level + "\" href=\"#" + text + "\" level=\"" + level + "\">" + text + "</a><ul>";
 
-             lastLevel = level;
 
-         }
 
-         
 
-         var tocContainer = container.find(".markdown-toc");
 
-         
 
-         if ((tocContainer.length < 1 && container.attr("previewContainer") === "false"))
 
-         {
 
-             var tocHTML = "<div class=\"markdown-toc " + classPrefix + "markdown-toc\"></div>";
 
-             
 
-             tocHTML = (tocDropdown) ? "<div class=\"" + classPrefix + "toc-menu\">" + tocHTML + "</div>" : tocHTML;
 
-             
 
-             container.html(tocHTML);
 
-             
 
-             tocContainer = container.find(".markdown-toc");
 
-         }
 
-         
 
-         if (tocDropdown)
 
-         {
 
-             tocContainer.wrap("<div class=\"" + classPrefix + "toc-menu\"></div><br/>");
 
-         }
 
-         
 
-         tocContainer.html("<ul class=\"markdown-toc-list\"></ul>").children(".markdown-toc-list").html(html.replace(/\r?\n?\<ul\>\<\/ul\>/g, ""));
 
-         
 
-         return tocContainer;
 
-     };
 
-     
 
-     /**
 
-      *
 
-      * 生成TOC下拉菜单
 
-      * Creating ToC dropdown menu
 
-      * 
 
-      * @param   {Object}   container       插入TOC的容器jQuery对象元素
 
-      * @param   {String}   tocTitle        ToC title
 
-      * @returns {Object}                   return toc-menu object
 
-      */
 
-     
 
-     editormd.tocDropdownMenu = function(container, tocTitle) {
 
-         
 
-         tocTitle      = tocTitle || "Table of Contents";
 
-         
 
-         var zindex    = 400;
 
-         var tocMenus  = container.find("." + this.classPrefix + "toc-menu");
 
-         tocMenus.each(function() {
 
-             var $this  = $(this);
 
-             var toc    = $this.children(".markdown-toc");
 
-             var icon   = "<i class=\"fa fa-angle-down\"></i>";
 
-             var btn    = "<a href=\"javascript:;\" class=\"toc-menu-btn\">" + icon + tocTitle + "</a>";
 
-             var menu   = toc.children("ul");            
 
-             var list   = menu.find("li");
 
-             
 
-             toc.append(btn);
 
-             
 
-             list.first().before("<li><h1>" + tocTitle + " " + icon + "</h1></li>");
 
-             
 
-             $this.mouseover(function(){
 
-                 menu.show();
 
-                 list.each(function(){
 
-                     var li = $(this);
 
-                     var ul = li.children("ul");
 
-                     if (ul.html() === "")
 
-                     {
 
-                         ul.remove();
 
-                     }
 
-                     if (ul.length > 0 && ul.html() !== "")
 
-                     {
 
-                         var firstA = li.children("a").first();
 
-                         if (firstA.children(".fa").length < 1)
 
-                         {
 
-                             firstA.append( $(icon).css({ float:"right", paddingTop:"4px" }) );
 
-                         }
 
-                     }
 
-                     li.mouseover(function(){
 
-                         ul.css("z-index", zindex).show();
 
-                         zindex += 1;
 
-                     }).mouseleave(function(){
 
-                         ul.hide();
 
-                     });
 
-                 });
 
-             }).mouseleave(function(){
 
-                 menu.hide();
 
-             }); 
 
-         });       
 
-         
 
-         return tocMenus;
 
-     };
 
-     
 
-     /**
 
-      * 简单地过滤指定的HTML标签
 
-      * Filter custom html tags
 
-      * 
 
-      * @param   {String}   html          要过滤HTML
 
-      * @param   {String}   filters       要过滤的标签
 
-      * @returns {String}   html          返回过滤的HTML
 
-      */
 
-     
 
-     editormd.filterHTMLTags = function(html, filters) {
 
-         
 
-         if (typeof html !== "string") {
 
-             html = new String(html);
 
-         }
 
-             
 
-         if (typeof filters !== "string") {
 
-             return html;
 
-         }
 
-         var expression = filters.split("|");
 
-         var filterTags = expression[0].split(",");
 
-         var attrs      = expression[1];
 
-         for (var i = 0, len = filterTags.length; i < len; i++)
 
-         {
 
-             var tag = filterTags[i];
 
-             html = html.replace(new RegExp("\<\s*" + tag + "\s*([^\>]*)\>([^\>]*)\<\s*\/" + tag + "\s*\>", "igm"), "");
 
-         }
 
-         
 
-         //return html;
 
-         if (typeof attrs !== "undefined")
 
-         {
 
-             var htmlTagRegex = /\<(\w+)\s*([^\>]*)\>([^\>]*)\<\/(\w+)\>/ig;
 
-             if (attrs === "*")
 
-             {
 
-                 html = html.replace(htmlTagRegex, function($1, $2, $3, $4, $5) {
 
-                     return "<" + $2 + ">" + $4 + "</" + $5 + ">";
 
-                 });         
 
-             }
 
-             else if (attrs === "on*")
 
-             {
 
-                 html = html.replace(htmlTagRegex, function($1, $2, $3, $4, $5) {
 
-                     var el = $("<" + $2 + ">" + $4 + "</" + $5 + ">");
 
-                     var _attrs = $($1)[0].attributes;
 
-                     var $attrs = {};
 
-                     
 
-                     $.each(_attrs, function(i, e) {
 
-                         if (e.nodeName !== '"') $attrs[e.nodeName] = e.nodeValue;
 
-                     });
 
-                     
 
-                     $.each($attrs, function(i) {                        
 
-                         if (i.indexOf("on") === 0) {
 
-                             delete $attrs[i];
 
-                         }
 
-                     });
 
-                     
 
-                     el.attr($attrs);
 
-                     
 
-                     var text = (typeof el[1] !== "undefined") ? $(el[1]).text() : "";
 
-                     return el[0].outerHTML + text;
 
-                 });
 
-             }
 
-             else
 
-             {
 
-                 html = html.replace(htmlTagRegex, function($1, $2, $3, $4) {
 
-                     var filterAttrs = attrs.split(",");
 
-                     var el = $($1);
 
-                     el.html($4);
 
-                     $.each(filterAttrs, function(i) {
 
-                         el.attr(filterAttrs[i], null);
 
-                     });
 
-                     return el[0].outerHTML;
 
-                 });
 
-             }
 
-         }
 
-         
 
-         return html;
 
-     };
 
-     
 
-     /**
 
-      * 将Markdown文档解析为HTML用于前台显示
 
-      * Parse Markdown to HTML for Font-end preview.
 
-      * 
 
-      * @param   {String}   id            用于显示HTML的对象ID
 
-      * @param   {Object}   [options={}]  配置选项,可选
 
-      * @returns {Object}   div           返回jQuery对象元素
 
-      */
 
-     
 
-     editormd.markdownToHTML = function(id, options) {
 
-         var defaults = {
 
-             gfm                  : true,
 
-             toc                  : true,
 
-             tocm                 : false,
 
-             tocStartLevel        : 1,
 
-             tocTitle             : "目录",
 
-             tocDropdown          : false,
 
-             tocContainer         : "",
 
-             markdown             : "",
 
-             markdownSourceCode   : false,
 
-             htmlDecode           : false,
 
-             autoLoadKaTeX        : true,
 
-             pageBreak            : true,
 
-             atLink               : true,    // for @link
 
-             emailLink            : true,    // for mail address auto link
 
-             tex                  : false,
 
-             taskList             : false,   // Github Flavored Markdown task lists
 
-             emoji                : false,
 
-             flowChart            : false,
 
-             sequenceDiagram      : false,
 
-             previewCodeHighlight : true
 
-         };
 
-         
 
-         editormd.$marked  = marked;
 
-         var div           = $("#" + id);
 
-         var settings      = div.settings = $.extend(true, defaults, options || {});
 
-         var saveTo        = div.find("textarea");
 
-         
 
-         if (saveTo.length < 1)
 
-         {
 
-             div.append("<textarea></textarea>");
 
-             saveTo        = div.find("textarea");
 
-         }        
 
-         
 
-         var markdownDoc   = (settings.markdown === "") ? saveTo.val() : settings.markdown; 
 
-         var markdownToC   = [];
 
-         var rendererOptions = {  
 
-             toc                  : settings.toc,
 
-             tocm                 : settings.tocm,
 
-             tocStartLevel        : settings.tocStartLevel,
 
-             taskList             : settings.taskList,
 
-             emoji                : settings.emoji,
 
-             tex                  : settings.tex,
 
-             pageBreak            : settings.pageBreak,
 
-             atLink               : settings.atLink,           // for @link
 
-             emailLink            : settings.emailLink,        // for mail address auto link
 
-             flowChart            : settings.flowChart,
 
-             sequenceDiagram      : settings.sequenceDiagram,
 
-             previewCodeHighlight : settings.previewCodeHighlight,
 
-         };
 
-         var markedOptions = {
 
-             renderer    : editormd.markedRenderer(markdownToC, rendererOptions),
 
-             gfm         : settings.gfm,
 
-             tables      : true,
 
-             breaks      : true,
 
-             pedantic    : false,
 
-             sanitize    : (settings.htmlDecode) ? false : true, // 是否忽略HTML标签,即是否开启HTML标签解析,为了安全性,默认不开启
 
-             smartLists  : true,
 
-             smartypants : true
 
-         };
 
-         
 
- 		markdownDoc = new String(markdownDoc);
 
-         
 
-         var markdownParsed = marked(markdownDoc, markedOptions);
 
-         
 
-         markdownParsed = editormd.filterHTMLTags(markdownParsed, settings.htmlDecode);
 
-         
 
-         if (settings.markdownSourceCode) {
 
-             saveTo.text(markdownDoc);
 
-         } else {
 
-             saveTo.remove();
 
-         }
 
-         
 
-         div.addClass("markdown-body " + this.classPrefix + "html-preview").append(markdownParsed);
 
-         
 
-         var tocContainer = (settings.tocContainer !== "") ? $(settings.tocContainer) : div;
 
-         
 
-         if (settings.tocContainer !== "")
 
-         {
 
-             tocContainer.attr("previewContainer", false);
 
-         }
 
-          
 
-         if (settings.toc) 
 
-         {
 
-             div.tocContainer = this.markdownToCRenderer(markdownToC, tocContainer, settings.tocDropdown, settings.tocStartLevel);
 
-             
 
-             if (settings.tocDropdown || div.find("." + this.classPrefix + "toc-menu").length > 0)
 
-             {
 
-                 this.tocDropdownMenu(div, settings.tocTitle);
 
-             }
 
-             
 
-             if (settings.tocContainer !== "")
 
-             {
 
-                 div.find(".editormd-toc-menu, .editormd-markdown-toc").remove();
 
-             }
 
-         }
 
-             
 
-         if (settings.previewCodeHighlight) 
 
-         {
 
-             //div.find("pre").addClass("prettyprint");
 
-             //prettyPrint();
 
-             div.find("pre").each(function (i, block) {
 
-                 hljs.highlightBlock(block);
 
-             });
 
-         }
 
-         
 
-         if (!editormd.isIE8) 
 
-         {
 
-             if (settings.flowChart) {
 
-                 div.find(".flowchart").flowChart(); 
 
-             }
 
-             if (settings.sequenceDiagram) {
 
-                 div.find(".sequence-diagram").sequenceDiagram({theme: "simple"});
 
-             }
 
-         }
 
-         if (settings.tex)
 
-         {
 
-             var katexHandle = function() {
 
-                 div.find("." + editormd.classNames.tex).each(function(){
 
-                     var tex  = $(this);                    
 
-                     katex.render(tex.html().replace(/</g, "<").replace(/>/g, ">"), tex[0]);                    
 
-                     tex.find(".katex").css("font-size", "1.6em");
 
-                 });
 
-             };
 
-             
 
-             if (settings.autoLoadKaTeX && !editormd.$katex && !editormd.kaTeXLoaded)
 
-             {
 
-                 this.loadKaTeX(function() {
 
-                     editormd.$katex      = katex;
 
-                     editormd.kaTeXLoaded = true;
 
-                     katexHandle();
 
-                 });
 
-             }
 
-             else
 
-             {
 
-                 katexHandle();
 
-             }
 
-         }
 
-         
 
-         div.getMarkdown = function() {            
 
-             return saveTo.val();
 
-         };
 
-         
 
-         return div;
 
-     };
 
-     
 
-     // Editor.md themes, change toolbar themes etc.
 
-     // added @1.5.0
 
-     editormd.themes        = ["default", "dark"];
 
-     
 
-     // Preview area themes
 
-     // added @1.5.0
 
-     editormd.previewThemes = ["default", "dark"];
 
-     
 
-     // CodeMirror / editor area themes
 
-     // @1.5.0 rename -> editorThemes, old version -> themes
 
-     editormd.editorThemes = [
 
-         "default", "3024-day", "3024-night",
 
-         "ambiance", "ambiance-mobile",
 
-         "base16-dark", "base16-light", "blackboard",
 
-         "cobalt",
 
-         "eclipse", "elegant", "erlang-dark",
 
-         "lesser-dark",
 
-         "mbo", "mdn-like", "midnight", "monokai",
 
-         "neat", "neo", "night",
 
-         "paraiso-dark", "paraiso-light", "pastel-on-dark",
 
-         "rubyblue",
 
-         "solarized",
 
-         "the-matrix", "tomorrow-night-eighties", "twilight",
 
-         "vibrant-ink",
 
-         "xq-dark", "xq-light"
 
-     ];
 
-     editormd.loadPlugins = {};
 
-     
 
-     editormd.loadFiles = {
 
-         js     : [],
 
-         css    : [],
 
-         plugin : []
 
-     };
 
-     
 
-     /**
 
-      * 动态加载Editor.md插件,但不立即执行
 
-      * Load editor.md plugins
 
-      * 
 
-      * @param {String}   fileName              插件文件路径
 
-      * @param {Function} [callback=function()] 加载成功后执行的回调函数
 
-      * @param {String}   [into="head"]         嵌入页面的位置
 
-      */
 
-     
 
-     editormd.loadPlugin = function(fileName, callback, into) {
 
-         callback   = callback || function() {};
 
-         
 
-         this.loadScript(fileName, function() {
 
-             editormd.loadFiles.plugin.push(fileName);
 
-             callback();
 
-         }, into);
 
-     };
 
-     
 
-     /**
 
-      * 动态加载CSS文件的方法
 
-      * Load css file method
 
-      * 
 
-      * @param {String}   fileName              CSS文件名
 
-      * @param {Function} [callback=function()] 加载成功后执行的回调函数
 
-      * @param {String}   [into="head"]         嵌入页面的位置
 
-      */
 
-     
 
-     editormd.loadCSS   = function(fileName, callback, into) {
 
-         into       = into     || "head";        
 
-         callback   = callback || function() {};
 
-         
 
-         var css    = document.createElement("link");
 
-         css.type   = "text/css";
 
-         css.rel    = "stylesheet";
 
-         css.onload = css.onreadystatechange = function() {
 
-             editormd.loadFiles.css.push(fileName);
 
-             callback();
 
-         };
 
-         css.href   = fileName + ".css";
 
-         if(into === "head") {
 
-             document.getElementsByTagName("head")[0].appendChild(css);
 
-         } else {
 
-             document.body.appendChild(css);
 
-         }
 
-     };
 
-     
 
-     editormd.isIE    = (navigator.appName == "Microsoft Internet Explorer");
 
-     editormd.isIE8   = (editormd.isIE && navigator.appVersion.match(/8./i) == "8.");
 
-     /**
 
-      * 动态加载JS文件的方法
 
-      * Load javascript file method
 
-      * 
 
-      * @param {String}   fileName              JS文件名
 
-      * @param {Function} [callback=function()] 加载成功后执行的回调函数
 
-      * @param {String}   [into="head"]         嵌入页面的位置
 
-      */
 
-     editormd.loadScript = function(fileName, callback, into) {
 
-         
 
-         into          = into     || "head";
 
-         callback      = callback || function() {};
 
-         
 
-         var script    = null; 
 
-         script        = document.createElement("script");
 
-         script.id     = fileName.replace(/[\./]+/g, "-");
 
-         script.type   = "text/javascript";        
 
-         script.src    = fileName + ".js";
 
-         
 
-         if (editormd.isIE8) 
 
-         {            
 
-             script.onreadystatechange = function() {
 
-                 if(script.readyState) 
 
-                 {
 
-                     if (script.readyState === "loaded" || script.readyState === "complete") 
 
-                     {
 
-                         script.onreadystatechange = null; 
 
-                         editormd.loadFiles.js.push(fileName);
 
-                         callback();
 
-                     }
 
-                 } 
 
-             };
 
-         }
 
-         else
 
-         {
 
-             script.onload = function() {
 
-                 editormd.loadFiles.js.push(fileName);
 
-                 callback();
 
-             };
 
-         }
 
-         if (into === "head") {
 
-             document.getElementsByTagName("head")[0].appendChild(script);
 
-         } else {
 
-             document.body.appendChild(script);
 
-         }
 
-     };
 
-     
 
-     // 使用国外的CDN,加载速度有时会很慢,或者自定义URL
 
-     // You can custom KaTeX load url.
 
-     editormd.katexURL  = {
 
-         css : "//cdnjs.cloudflare.com/ajax/libs/KaTeX/0.3.0/katex.min",
 
-         js  : "//cdnjs.cloudflare.com/ajax/libs/KaTeX/0.3.0/katex.min"
 
-     };
 
-     
 
-     editormd.kaTeXLoaded = false;
 
-     
 
-     /**
 
-      * 加载KaTeX文件
 
-      * load KaTeX files
 
-      * 
 
-      * @param {Function} [callback=function()]  加载成功后执行的回调函数
 
-      */
 
-     
 
-     editormd.loadKaTeX = function (callback) {
 
-         editormd.loadCSS(editormd.katexURL.css, function(){
 
-             editormd.loadScript(editormd.katexURL.js, callback || function(){});
 
-         });
 
-     };
 
-         
 
-     /**
 
-      * 锁屏
 
-      * lock screen
 
-      * 
 
-      * @param   {Boolean}   lock   Boolean 布尔值,是否锁屏
 
-      * @returns {void}
 
-      */
 
-     
 
-     editormd.lockScreen = function(lock) {
 
-         $("html,body").css("overflow", (lock) ? "hidden" : "");
 
-     };
 
-         
 
-     /**
 
-      * 动态创建对话框
 
-      * Creating custom dialogs
 
-      * 
 
-      * @param   {Object} options 配置项键值对 Key/Value
 
-      * @returns {dialog} 返回创建的dialog的jQuery实例对象
 
-      */
 
-     editormd.createDialog = function(options) {
 
-         var defaults = {
 
-             name : "",
 
-             width : 420,
 
-             height: 240,
 
-             title : "",
 
-             drag  : true,
 
-             closed : true,
 
-             content : "",
 
-             mask : true,
 
-             maskStyle : {
 
-                 backgroundColor : "#fff",
 
-                 opacity : 0.1
 
-             },
 
-             lockScreen : true,
 
-             footer : true,
 
-             buttons : false
 
-         };
 
-         options          = $.extend(true, defaults, options);
 
-         
 
-         var $this        = this;
 
-         var editor       = this.editor;
 
-         var classPrefix  = editormd.classPrefix;
 
-         var guid         = (new Date()).getTime();
 
-         var dialogName   = ( (options.name === "") ? classPrefix + "dialog-" + guid : options.name);
 
-         var mouseOrTouch = editormd.mouseOrTouch;
 
-         var html         = "<div class=\"" + classPrefix + "dialog " + dialogName + "\">";
 
-         if (options.title !== "")
 
-         {
 
-             html += "<div class=\"" + classPrefix + "dialog-header\"" + ( (options.drag) ? " style=\"cursor: move;\"" : "" ) + ">";
 
-             html += "<strong class=\"" + classPrefix + "dialog-title\">" + options.title + "</strong>";
 
-             html += "</div>";
 
-         }
 
-         if (options.closed)
 
-         {
 
-             html += "<a href=\"javascript:;\" class=\"fa fa-close " + classPrefix + "dialog-close\"></a>";
 
-         }
 
-         html += "<div class=\"" + classPrefix + "dialog-container\">" + options.content;                    
 
-         if (options.footer || typeof options.footer === "string") 
 
-         {
 
-             html += "<div class=\"" + classPrefix + "dialog-footer\">" + ( (typeof options.footer === "boolean") ? "" : options.footer) + "</div>";
 
-         }
 
-         html += "</div>";
 
-         html += "<div class=\"" + classPrefix + "dialog-mask " + classPrefix + "dialog-mask-bg\"></div>";
 
-         html += "<div class=\"" + classPrefix + "dialog-mask " + classPrefix + "dialog-mask-con\"></div>";
 
-         html += "</div>";
 
-         editor.append(html);
 
-         var dialog = editor.find("." + dialogName);
 
-         dialog.lockScreen = function(lock) {
 
-             if (options.lockScreen)
 
-             {                
 
-                 $("html,body").css("overflow", (lock) ? "hidden" : "");
 
-                 $this.resize();
 
-             }
 
-             return dialog;
 
-         };
 
-         dialog.showMask = function() {
 
-             if (options.mask)
 
-             {
 
-                 editor.find("." + classPrefix + "mask").css(options.maskStyle).css("z-index", editormd.dialogZindex - 1).show();
 
-             }
 
-             return dialog;
 
-         };
 
-         dialog.hideMask = function() {
 
-             if (options.mask)
 
-             {
 
-                 editor.find("." + classPrefix + "mask").hide();
 
-             }
 
-             return dialog;
 
-         };
 
-         dialog.loading = function(show) {                        
 
-             var loading = dialog.find("." + classPrefix + "dialog-mask");
 
-             loading[(show) ? "show" : "hide"]();
 
-             return dialog;
 
-         };
 
-         dialog.lockScreen(true).showMask();
 
-         dialog.show().css({
 
-             zIndex : editormd.dialogZindex,
 
-             border : (editormd.isIE8) ? "1px solid #ddd" : "",
 
-             width  : (typeof options.width  === "number") ? options.width + "px"  : options.width,
 
-             height : (typeof options.height === "number") ? options.height + "px" : options.height
 
-         });
 
-         var dialogPosition = function(){
 
-             dialog.css({
 
-                 top    : ($(window).height() - dialog.height()) / 2 + "px",
 
-                 left   : ($(window).width() - dialog.width()) / 2 + "px"
 
-             });
 
-         };
 
-         dialogPosition();
 
-         $(window).resize(dialogPosition);
 
-         dialog.children("." + classPrefix + "dialog-close").bind(mouseOrTouch("click", "touchend"), function() {
 
-             dialog.hide().lockScreen(false).hideMask();
 
-         });
 
-         if (typeof options.buttons === "object")
 
-         {
 
-             var footer = dialog.footer = dialog.find("." + classPrefix + "dialog-footer");
 
-             for (var key in options.buttons)
 
-             {
 
-                 var btn = options.buttons[key];
 
-                 var btnClassName = classPrefix + key + "-btn";
 
-                 footer.append("<button class=\"" + classPrefix + "btn " + btnClassName + "\">" + btn[0] + "</button>");
 
-                 btn[1] = $.proxy(btn[1], dialog);
 
-                 footer.children("." + btnClassName).bind(mouseOrTouch("click", "touchend"), btn[1]);
 
-             }
 
-         }
 
-         if (options.title !== "" && options.drag)
 
-         {                        
 
-             var posX, posY;
 
-             var dialogHeader = dialog.children("." + classPrefix + "dialog-header");
 
-             if (!options.mask) {
 
-                 dialogHeader.bind(mouseOrTouch("click", "touchend"), function(){
 
-                     editormd.dialogZindex += 2;
 
-                     dialog.css("z-index", editormd.dialogZindex);
 
-                 });
 
-             }
 
-             dialogHeader.mousedown(function(e) {
 
-                 e = e || window.event;  //IE
 
-                 posX = e.clientX - parseInt(dialog[0].style.left);
 
-                 posY = e.clientY - parseInt(dialog[0].style.top);
 
-                 document.onmousemove = moveAction;                   
 
-             });
 
-             var userCanSelect = function (obj) {
 
-                 obj.removeClass(classPrefix + "user-unselect").off("selectstart");
 
-             };
 
-             var userUnselect = function (obj) {
 
-                 obj.addClass(classPrefix + "user-unselect").on("selectstart", function(event) { // selectstart for IE                        
 
-                     return false;
 
-                 });
 
-             };
 
-             var moveAction = function (e) {
 
-                 e = e || window.event;  //IE
 
-                 var left, top, nowLeft = parseInt(dialog[0].style.left), nowTop = parseInt(dialog[0].style.top);
 
-                 if( nowLeft >= 0 ) {
 
-                     if( nowLeft + dialog.width() <= $(window).width()) {
 
-                         left = e.clientX - posX;
 
-                     } else {	
 
-                         left = $(window).width() - dialog.width();
 
-                         document.onmousemove = null;
 
-                     }
 
-                 } else {
 
-                     left = 0;
 
-                     document.onmousemove = null;
 
-                 }
 
-                 if( nowTop >= 0 ) {
 
-                     top = e.clientY - posY;
 
-                 } else {
 
-                     top = 0;
 
-                     document.onmousemove = null;
 
-                 }
 
-                 document.onselectstart = function() {
 
-                     return false;
 
-                 };
 
-                 userUnselect($("body"));
 
-                 userUnselect(dialog);
 
-                 dialog[0].style.left = left + "px";
 
-                 dialog[0].style.top  = top + "px";
 
-             };
 
-             document.onmouseup = function() {                            
 
-                 userCanSelect($("body"));
 
-                 userCanSelect(dialog);
 
-                 document.onselectstart = null;         
 
-                 document.onmousemove = null;
 
-             };
 
-             dialogHeader.touchDraggable = function() {
 
-                 var offset = null;
 
-                 var start  = function(e) {
 
-                     var orig = e.originalEvent; 
 
-                     var pos  = $(this).parent().position();
 
-                     offset = {
 
-                         x : orig.changedTouches[0].pageX - pos.left,
 
-                         y : orig.changedTouches[0].pageY - pos.top
 
-                     };
 
-                 };
 
-                 var move = function(e) {
 
-                     e.preventDefault();
 
-                     var orig = e.originalEvent;
 
-                     $(this).parent().css({
 
-                         top  : orig.changedTouches[0].pageY - offset.y,
 
-                         left : orig.changedTouches[0].pageX - offset.x
 
-                     });
 
-                 };
 
-                 this.bind("touchstart", start).bind("touchmove", move);
 
-             };
 
-             dialogHeader.touchDraggable();
 
-         }
 
-         editormd.dialogZindex += 2;
 
-         return dialog;
 
-     };
 
-     
 
-     /**
 
-      * 鼠标和触摸事件的判断/选择方法
 
-      * MouseEvent or TouchEvent type switch
 
-      * 
 
-      * @param   {String} [mouseEventType="click"]    供选择的鼠标事件
 
-      * @param   {String} [touchEventType="touchend"] 供选择的触摸事件
 
-      * @returns {String} EventType                   返回事件类型名称
 
-      */
 
-     
 
-     editormd.mouseOrTouch = function(mouseEventType, touchEventType) {
 
-         mouseEventType = mouseEventType || "click";
 
-         touchEventType = touchEventType || "touchend";
 
-         
 
-         var eventType  = mouseEventType;
 
-         try {
 
-             document.createEvent("TouchEvent");
 
-             eventType = touchEventType;
 
-         } catch(e) {}
 
-         return eventType;
 
-     };
 
-     
 
-     /**
 
-      * 日期时间的格式化方法
 
-      * Datetime format method
 
-      * 
 
-      * @param   {String}   [format=""]  日期时间的格式,类似PHP的格式
 
-      * @returns {String}   datefmt      返回格式化后的日期时间字符串
 
-      */
 
-     
 
-     editormd.dateFormat = function(format) {                
 
-         format      = format || "";
 
-         var addZero = function(d) {
 
-             return (d < 10) ? "0" + d : d;
 
-         };
 
-         var date    = new Date(); 
 
-         var year    = date.getFullYear();
 
-         var year2   = year.toString().slice(2, 4);
 
-         var month   = addZero(date.getMonth() + 1);
 
-         var day     = addZero(date.getDate());
 
-         var weekDay = date.getDay();
 
-         var hour    = addZero(date.getHours());
 
-         var min     = addZero(date.getMinutes());
 
-         var second  = addZero(date.getSeconds());
 
-         var ms      = addZero(date.getMilliseconds()); 
 
-         var datefmt = "";
 
-         var ymd     = year2 + "-" + month + "-" + day;
 
-         var fymd    = year  + "-" + month + "-" + day;
 
-         var hms     = hour  + ":" + min   + ":" + second;
 
-         switch (format) 
 
-         {
 
-             case "UNIX Time" :
 
-                     datefmt = date.getTime();
 
-                 break;
 
-             case "UTC" :
 
-                     datefmt = date.toUTCString();
 
-                 break;	
 
-             case "yy" :
 
-                     datefmt = year2;
 
-                 break;	
 
-             case "year" :
 
-             case "yyyy" :
 
-                     datefmt = year;
 
-                 break;
 
-             case "month" :
 
-             case "mm" :
 
-                     datefmt = month;
 
-                 break;                        
 
-             case "cn-week-day" :
 
-             case "cn-wd" :
 
-                     var cnWeekDays = ["日", "一", "二", "三", "四", "五", "六"];
 
-                     datefmt = "星期" + cnWeekDays[weekDay];
 
-                 break;
 
-             case "week-day" :
 
-             case "wd" :
 
-                     var weekDays = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
 
-                     datefmt = weekDays[weekDay];
 
-                 break;
 
-             case "day" :
 
-             case "dd" :
 
-                     datefmt = day;
 
-                 break;
 
-             case "hour" :
 
-             case "hh" :
 
-                     datefmt = hour;
 
-                 break;
 
-             case "min" :
 
-             case "ii" :
 
-                     datefmt = min;
 
-                 break;
 
-             case "second" :
 
-             case "ss" :
 
-                     datefmt = second;
 
-                 break;
 
-             case "ms" :
 
-                     datefmt = ms;
 
-                 break;
 
-             case "yy-mm-dd" :
 
-                     datefmt = ymd;
 
-                 break;
 
-             case "yyyy-mm-dd" :
 
-                     datefmt = fymd;
 
-                 break;
 
-             case "yyyy-mm-dd h:i:s ms" :
 
-             case "full + ms" : 
 
-                     datefmt = fymd + " " + hms + " " + ms;
 
-                 break;
 
-             case "full" :
 
-             case "yyyy-mm-dd h:i:s" :
 
-                 default:
 
-                     datefmt = fymd + " " + hms;
 
-                 break;
 
-         }
 
-         return datefmt;
 
-     };
 
-     return editormd;
 
- }));
 
 
  |