-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautop.plugin.xml
31 lines (25 loc) · 1.52 KB
/
autop.plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8" ?>
<pluggable type="plugin" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schemas.habariproject.org/pluggable/0.8">
<name>AutoParagraph</name>
<license url="http://www.apache.org/licenses/LICENSE-2.0.html">Apache Software License 2.0</license>
<author url="http://habariproject.org/">The Habari Community</author>
<version>0.9</version>
<url>http://habariproject.org/</url>
<description><![CDATA[Automatically insert HTML paragraph tags and line breaks.]]></description>
<copyright>2009</copyright>
<help>
<value><![CDATA[
<p>When activated, this plugin modifies the HTML output of the site to include paragraphs and line breaks, where they are placed within post content. It does not modify the original data.</p>
<p class="warning"><strong>The changes are not saved to the database.</strong> If you deactivate this plugin, the new formatting will be lost.</p>
<h3>Sample Input</h3>
<p>When activated, the plugin will convert line breaks in raw post content, such as the following, into paragraphs.</p>
<code class="block">This is paragraph one.
This is paragraph two.
This is the second line of paragraph two.</code>
<h3>Sample Output</h3>
<p>Raw content, such as that above, will be converted into HTML, similar to the following.</p>
<code class="block"><p>This is paragraph one.</p>
<p>This is paragraph two.<br>This is the second line of paragraph two.</p></code>
]]></value>
</help>
</pluggable>