Changeset 349821
- Timestamp:
- 02/23/2011 03:04:50 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
line-break-shortcode/trunk/linebreak-shortcode/readme.txt
r349800 r349821 1 Line Break Shortcode plugin. 2 Licensed under the freebsd license. 3 Be free. BSD free. 1 === Line Break Shortcode === 2 Stable tag: trunk 3 Tested up to: 3.0.5 4 Requires at least: 3.0 5 Contributors: ReynoldsTimJ 6 Tags: shortcode, line break, linebreak, br 7 License: FreeBSD license. Be free. BSD free. 8 == Installation == 4 9 10 Install this just like any other Wordpress plug-in. Either upload it into your wp-content/plugins directory or load it through the Upload web interface. 11 12 == Description == 5 13 Use this to force line breaks into your posts and pages. It is simple. [br] will add a line break. It won't be filtered out by TinyMCE. 6 14 … … 8 16 9 17 18 10 19 Example time! 11 20 12 21 If your text editor content looks like this: 13 Hello this is my 14 [br] 15 example! 22 23 ` 24 Hello this is my 25 [br] 26 example! 27 ` 16 28 17 29 The HTML will end up: 18 <p>Hello this is my</p> 19 <p><br /></p> 20 <p>example!</p> 30 31 ` 32 <p>Hello this is my</p> 33 <p><br /></p> 34 <p>example!</p> 35 ` 21 36 22 37 Because the default styling of a paragraph tag adds an area of white space below it this may result in more of a break than you wanted. Solution: 23 Hello this is my [br] example! 38 39 ` 40 Hello this is my [br] example! 41 ` 24 42 25 43 Which results in the following HTML: 26 <p>Hello this is my <br /> example!</p> 27 44 ` 45 <p>Hello this is my <br /> example!</p> 46 ` 28 47 29 48 Question/Comments: Please hit up the forum or drop me a line at Reynolds.TimJ+LinebreakPlugin@gmail.com 49 50 == Changelog == 51 1.0 - Initial check-in. I don't predict there will be many changes to this plug-in.
Note: See TracChangeset
for help on using the changeset viewer.