Artiss README Parser (formerly WP README Parser) will display a WordPress plugin's README file in XHTML format, for embedding on a post or page.
Description
WordPress README files are formatted using a version of the Markdown language. This plugin can be used to convert these to XHTML and display on a post or page of your site.
It's ideal for plugin developers who wish to add instructions to their own site without having to duplicate effort.
Features include...
- XHTML compliant output
- Convert your markdown README to XHTML and display in any post or page
- Use shortcodes or a direct PHP function call
- Responsive output of screenshots
- Output is cached for maximum performance
- Links automatically added to author and tag information
- Download links added
- Ability to specify which sections of the readme to exclude
- Can also omit specific lines of text
- Extra shortcodes available to display plugin banners and to return specific plugin data (download link, version number, etc)
- Google Translation suppressed on code output
- Fully internationalized ready for translations. If you would like to add a translation to his plugin then please contact me
- And many more!
To use, simply add the [readme] shortcode to any post or page. An example of use would be...
[readme]WP README Parser[/readme]
This would fetch and display the README for this plugin. You can also specify a filename instead.
The first heading, which is the name of the plugin, will be automatically suppressed as it is assumed that you have already added this to your post/page or are using it as the title.
Additional Shortcode Parameters
exclude
Each README is divided into a number of sections. If you wish to exclude any from the output then use this parameter to list them.
Before the first section (usually "Description") is a number of pieces of "meta data" about the plugin, including tags, etc. Links are automatically added to these. If, however, you wish to just exclude this data then you should use the section name of "meta". Underneath this data is a short description which will remain in this case. If you want to remove this description and the meta data then use the section name of "head". If you wish to just remove a particular bit of meta data then specify contributors, donate, tags, requires, tested or stable.
For example...
[readme exclude="Meta,Changelog"]WP README Parser[/readme]
This will display the entire README with the exception of the Changelog and the Plugin meta.
ignore
Different from exclude this allows to ignore specific lines of the README. Multiple lines should be seperated by double commas (to allow single commas to be be used in the actual line to be ignored). For example...
[readme ignore="this line,,and this line"]WP README Parser[/readme]
target
Any links will have a target of _blank. If you wish this to be anything else then change it with this parameter. For example...
[readme target="_self"]WP README Parser[/readme]
nofollow
If you wish a link to have a nofollow option (i.e. the tag of rel="nofollow") then specify this as "Yes". By default it won't. For example...
[readme nofollow="Yes"]WP README Parser[/readme]
cache
This allows you to specify how long output should be cached for, in minutes. By default caching does not occur. For example, to cache for 1 hour...
[readme cache=60]WP README Parser[/readme]
version
If you wish to display a specific version of the README, use this parameter to request it. For example...
[readme version=1.0]WP README Parser[/readme]
mirror
If your plugin is hosted at a number of other locations then you can use this to specify alternative download URLs other than the WordPress repository. Simply seperate multiple URLs with double commas (i.e. ,,). For example...
[readme mirror="http://www.example1.com,,http://www.example2.com"]WP README Parser[/readme]
links
By default download and other links will be added to the bottom of the README output. By specifying a section name via this parameter, however, then the links will appear before that section. For example, to appear before the description you'd put...
[readme links="description"]WP README Parser[/readme]
name
If you specify a README filename instead a name then it will be assumed that the plugin name at the top of the README is the correct one. This may not be the case, however, if you've renamed your plugin (as is the case for this plugin). You can therefore use the name parameter to override this.
[readme name="WP README Parser"]http://plugins.svn.wordpress.org/wp-readme-parser/trunk/readme.txt[/readme]
Using Simple Content Reveal
If you also have the plugin Artiss Content Reveal installed, then each section of the README will be collapsable - that is, you can click on the section heading to hide the section content.
By default, all sections of the output will be revealed.
You may now use 3 further parameters when using the [readme] shortcode...
hide
Use this parameter to hide sections automatically - simply click on them to reveal them again.
For example...
[readme hide="Changelog"]WP README Parser[/readme]
scr_url
If you wish to supply your own hide/reveal images then you can specify your own folder here.
The two images (one for when the content is hidden, another for when it's shown) must be named image1 and image2. They can either by GIF or PNG images (see the next parameter).
For example...
[readme scr_url="http://www.artiss.co.uk"]WP README Parser[/readme]
scr_ext
Use this specify whether you wish to use PNG or GIF images for your own hide/reveal images. If you do not specify it, GIF will be used.
For example...
[readme scr_url="http://www.artiss.co.uk" scr_ext="png"]WP README Parser[/readme]
Using a Function Call
If you wish to code a direct PHP call to the plugin, you can do. The function is named readme_parser and accepts 2 parameters. The first is an array of all the options, the same as the shortcode. The second parameter is the README name or filename.
For example...
This may be of particular use to plugin developers as they can then display the README for their plugins within their administration screens.
Display specific README information
You may wish to add your own section to the output to provide download links, etc. In which case you can suppress this section and then use an additional shortcode to retrieve the information that you need.
Use the shortcode [readme_info] to return one of a number of different pieces of information. Use the required parameter data to specify what you need - this can b...
- download - Display a download link
- version - Output the current version number
- forum - Display a link to the forum
- wordpress - Display a link to the plugin in the WordPress.org repository
In the cases of the links you must specify text between the opening and closing shortcodes to link to.
There are 4 additional parameters...
- name - Use this to specify the plugin name. This is a require parameter
- target - If outputting a link this will assign a target to the output (default is _blank)
- nofollow - If
Yesthen this will be anofollowlink. By default it won't be - cache - By default any output will be cached for 5 minutes so that if you use this shortcode multiple times on a page the data will only be fetched once. Specify a different number (in minutes) to adjust this. Set to
Noto switch off caching entirely
An example of usage may be...
`[readme_info name="YouTube Embed" data="download"]Download Artiss YouTube Embed[/readme_info]'
Licence
This WordPress plugin is licensed under the GPLv2 (or later).
Reviews & Mentions
WPCandy - WP README Parser Plugin converts Plugin's readme into blog-ready XHTML
Acknowledgements
Artiss README Parser uses PHP Markdown Extra by Michel Fortin.
Installation
- Upload the entire
wp-readme-parserfolder to yourwp-content/plugins/directory. - Activate the plugin through the WordPress 'Plugins' menu.
- Insert the shortcode into any posts or pages - no settings screen exists.
Frequently Asked Questions
Can I change the look of the output?
You can. The whole output is encased in a <div> with a class of np- followed by the plugin name (lower case and spaces converted to dashes).
Each section that has a <div> around it with a class of np- followed by the section name (lower case and spaces converted to dashes).
The download link has an additional <div> around it with a class of np-download-link.
Screenshots have a <div> with a class of np-screenshotx, where x is the screenshot number.
Each of these div's can therefore be styled using your theme stylesheet.
Which version of PHP does this plugin work with?
It has been tested and been found valid from PHP 4 upwards.
Please note, however, that the minimum for WordPress is now PHP 5.2.4. Even though this plugin supports a lower version, I am not coding specifically to achieve this - therefore this minimum may change in the future.
Changelog
1.2
- Maintenance: Split out code and improved code quality
- Maintenance: Major update to README
- Maintenance: Updated Artiss Content Reveal function names - was using older, deprecated names
- Bug: Resolved a number of WP Debug errors
- Enhancement: NOFOLLOW and TARGET information added to tags
- Enhancement: Changed DIVs to use CLASS instead of ID
- Enhancement: You may now specify which version of the README you wish to display
- Enhancement: Output may now be cached (by default it isn't)
- Enhancement: Added option to specify download mirrors
- Enhancement: Code output has a CLASS added that prevents Google translation
- Enhancement: Added responsive output on screenshots
- Enhancement: You can specify where the download/links section will appear
- Enhancement: Added
readme_bannershortcode to display an assigned banner image - Enhancement: Added
readme_infoshortcode to output various useful bits of information about the README seperately from the main shortcode - Enhancement: Added new
nameparameter. If a filename was specified and the name at the top of the README was not the same as it's held in the WP repository (this plugin is an example) then it would not work. This new parameter allows you to specify a correct plugin name - Enhancement: Added internationalisation
- Enhancement: Added additional meta information to the plugin settings
- Enhancement:
extparameter no longer needed - automatic detection of screenshot extension type
1.1.1
- Bug: Updated Markdown Extra script to latest version - this fixes a number of bugs
1.1
- Bug: Fixed file fetching bug
- Enhancement: Improved code display - particularly code multi-lines
- Enhancement: New option to suppress specific lines
1.0.2
- Enhancement: Screenshots will now be picked from trunk or tag folders, depending on stable tag
- Enhancement: Improved handling of download link and version numbers
1.0.1
- Bug: Fix bug where download link didn't work if "Stable Tag" meta was excluded
- Enhancement: Added check for malformed README file where there are no carriage returnes
- Enhancement: Output download version number
1.0
- Initial release


I have installed WP README Parser as you can see here http://www.mywordpress.co.uk/explanatory-dictionary/
In your description you state that you can supply a url for the readme file.
Now I may be missing something but how do you format the shortcodes so I can pick up a local readme file plus exclude,hide etc.
Looks good!
The plugin looks for :// in the plugin name to decide if you’ve specified a URL – this does mean that local URLs won’t work, but specify the http version and it will.
For example….
[readme]http://www.artiss.co.uk/readme.txt[/readme]Thanks for the response.But I am still having a problem getting it to work with a local file.
To prove it works I did this.
Modified the readme.txt keeping the structure the same and copied it so it appears here http://www.mywordpress.co.uk/readme.txt checked and it shows in the browser window.Used this [readme]http://www.mywordpress.co.uk/readme.txt[/readme] to display still no luck.
Any ideas?
Your readme file is not in a valid format – there are no carriage returns at the end of the each line. Use the following filename and you’ll see it does work… .