/* * Emphasis.bsh - a BeanShell macro script */ void addTag() { caret = textArea.getCaretPosition(); text = textArea.getSelectedText(); if(text == null) text = ""; sb = new StringBuffer(); sb.append(""); sb.append(text); sb.append(""); textArea.setSelectedText(sb.toString()); } addTag(); // end