Newlines and code formatting in quicktag code.

git-svn-id: http://svn.automattic.com/wordpress/trunk@623 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2003-12-18 07:12:29 +00:00
parent f92b6e4266
commit 50ef006a57
1 changed files with 8 additions and 8 deletions

View File

@ -26,14 +26,14 @@ var datetime = now.getFullYear() + '-' +
*/ */
edButtons[edButtons.length] = new edButton('ed_strong' edButtons[edButtons.length] = new edButton('ed_strong'
,'B' ,'strong'
,'<strong>' ,'<strong>'
,'</strong>' ,'</strong>'
,'b' ,'b'
); );
edButtons[edButtons.length] = new edButton('ed_em' edButtons[edButtons.length] = new edButton('ed_em'
,'i' ,'em'
,'<em>' ,'<em>'
,'</em>' ,'</em>'
,'i' ,'i'
@ -70,22 +70,22 @@ edButtons[edButtons.length] = new edButton('ed_img'
edButtons[edButtons.length] = new edButton('ed_ul' edButtons[edButtons.length] = new edButton('ed_ul'
,'ul' ,'ul'
,'<ul>' ,'<ul>\n'
,'</ul>' ,'</ul>\n\n'
,'u' ,'u'
); );
edButtons[edButtons.length] = new edButton('ed_ol' edButtons[edButtons.length] = new edButton('ed_ol'
,'ol' ,'ol'
,'<ol>' ,'<ol>\n'
,'</ol>' ,'</ol>\n\n'
,'o' ,'o'
); );
edButtons[edButtons.length] = new edButton('ed_li' edButtons[edButtons.length] = new edButton('ed_li'
,'li' ,'li'
,'<li>' ,'\t<li>'
,'</li>' ,'</li>\n'
,'l' ,'l'
); );