var fDesc=new Array(); fDesc[0] = "Code Snippet plugin for Windows Live Writer is a plugin to help format and apply syntax highlighting to source code.
Features:
-Compact Mode - launches a compact version of the plugin that allows you to quickly modify formatting settings without a preview. This is for users who may only want to quickly select the language for formatting.
-Copy CSS Styles - you can copy the CSS styles used in the plugin so you can add them to your Blog’s template or globally included style file.
-Customizable Styles - style propeties are exposed via Options dialog to allow customization of the look of the code snippet.
-Edit Previously Generated Code Snippets - it is now possible to edit previously generated code snippets.
Convert Selected Text Into A Code Snippet - There’s also the ability to convert selected
-Expandable/Splitable Code Panes - able to view the code to process or the formatted code in full mode, in addition to viewing both in split mode.
-Persistent Options - any changes to the options are automatically stored in an external configuration file and reloaded on next execution.
-Rich Text Editor - allows to perform final changes to the source code before pasting into blog post.
-Run Silent - use latest settings to automatically process current clipboard contents for quick pasting without displaying the Code Snippet window. Press and hold the Ctrl key while activating the plugin to disable this mode.
-View HTML - you can view the HTML markup before inserting the code snippet."; 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 = ''; } }