var fDesc=new Array();
fDesc[0] = "TikzEdt is a combined wysiwyg/text editor designed for editing Tikz code.
Main features:
- Syntax highlighting and code completion, based on AvalonEdit.
- Real time rendering, using pdflatex and mupdf.
- It contains a Tikz parser, built using the Antlr parser generator.
- Parsed coordinates are displayed as an overlay on the rendered image. The overlay can be edited with the mouse in a wysiwyg manner. The source code is updated accordingly.
- It comes with a snippet library to store frequently used commands and styles, containing many pre-defined examples.";
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 = '';
}
}