var fDesc=new Array(); fDesc[0] = "*

Free IDE plugin to copy source code with syntax highlighting to the clipboard

When installing the package, the IDE Edit menu gets two new items: "Copy as RTF" and Copy as "HTML". The editor context menu also gets these two new items added. Selecting "Copy as RTF" will copy the selected source code in the editor with syntax highlighting as rich text to the clipboard and the text can be pasted for example in MS Word with all syntax highlighting applied. When selecting "Copy as HTML", the selected source code is copied as HTML formatted text with syntax highlighting to the clipboard and can for example be pasted in the browser and will be rendered with all syntax highlighting applied."; 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 = ''; } }