var fDesc=new Array(); fDesc[0] = "Markdown Edit is a Windows desktop CommonMark editor with an emphasis on content and keyboard shortcuts. There is minimal window chrome and most functions are accessed through keyboard shortcuts. There is no main menu, status bar, tabbed windows or other distractions. The program features: syntax highlighting editor, side-by-side HTML preview, CommonMark standard Markdown engine, keyboard shortcuts for bold, italic, headers, lists, block quotes, etc., user settable fonts, colors, themes, user defined style sheets, and more."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }