Plugin Directory

Changeset 349821


Ignore:
Timestamp:
02/23/2011 03:04:50 PM (15 years ago)
Author:
ReynoldsTimJ
Message:

Updated the readme.txt to be in line with the standards.

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 ===
     2Stable tag: trunk
     3Tested up to: 3.0.5
     4Requires at least: 3.0
     5Contributors: ReynoldsTimJ
     6Tags: shortcode, line break, linebreak, br
     7License: FreeBSD license. Be free. BSD free.
     8== Installation ==
    49
     10Install 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 ==
    513Use 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.
    614
     
    816
    917
     18
    1019Example time!
    1120
    1221If your text editor content looks like this:
    13     Hello this is my
    14     [br]
    15     example!
     22
     23`
     24Hello this is my
     25[br]
     26example!
     27`
    1628
    1729The 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`
    2136
    2237Because 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`
     40Hello this is my [br] example!
     41`
    2442
    2543Which 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`
    2847   
    2948Question/Comments: Please hit up the forum or drop me a line at Reynolds.TimJ+LinebreakPlugin@gmail.com
     49
     50== Changelog ==
     511.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.