Implemented [line] tag

SVN revision: 1854
This commit is contained in:
2007-04-26 15:13:07 +00:00
parent afaa9e5daf
commit 9c80b582dc
3 changed files with 12 additions and 0 deletions
+2
View File
@@ -66,6 +66,8 @@ function elcode1(text, tag, value, selection)
str = '[LIST]\r\n[*] ' + selection + '\r\n[/LIST]';
else if (tag == 'TABLE')
str = '[TABLE border="1"]\r\nA|B\r\n|-\r\nC|D\r\n[/TABLE]';
else if (tag == 'LINE')
str = selection + '[LINE]';
else if (value == '')
str = '['+tag+']' + selection + '[/'+tag+']';
else