Newlines and code formatting in quicktag code.

git-svn-id: https://develop.svn.wordpress.org/trunk@623 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2003-12-18 07:12:29 +00:00
parent 6e9752f8be
commit 5aae30a436

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'
); );