| 1 |
Drupal easylists.module README.txt
|
| 2 |
==============================================================================
|
| 3 |
|
| 4 |
The Drupal easylists.module adds a filter to Drupal. It allow you to
|
| 5 |
create lists in a very intuitive way. For example:
|
| 6 |
|
| 7 |
- Part 1
|
| 8 |
- Part 2
|
| 9 |
-- Part 2 - Section a
|
| 10 |
-- Part 2 - Section b
|
| 11 |
- Part 3
|
| 12 |
|
| 13 |
... becomes (in HTML):
|
| 14 |
|
| 15 |
<ul>
|
| 16 |
<li>Part 1</li>
|
| 17 |
<li>Part 2
|
| 18 |
<ul>
|
| 19 |
<li>Part 2 - Section a</li>
|
| 20 |
<li>Part 2 - Section b</li>
|
| 21 |
</ul>
|
| 22 |
</li>
|
| 23 |
<li>Part3</li>
|
| 24 |
</ul>
|
| 25 |
|
| 26 |
Installation
|
| 27 |
------------------------------------------------------------------------------
|
| 28 |
|
| 29 |
- Download the EasyList module from http://drupal.org/project/easylists
|
| 30 |
|
| 31 |
- Create an easylists/ subdirectory in your modules directory and copy the
|
| 32 |
files into it.
|
| 33 |
|
| 34 |
- Enable the module as usual from Drupal's admin pages
|
| 35 |
(Administer ยป Modules)
|
| 36 |
|
| 37 |
- Activate EasyLists in an input filter.
|
| 38 |
|
| 39 |
Credits / Contacts
|
| 40 |
------------------------------------------------------------------------------
|
| 41 |
|
| 42 |
- The original author of this module is Frederic Jacquot (aka deelight), who
|
| 43 |
can be reached at deelight[at]logeek.com.
|
| 44 |
|
| 45 |
- Most of the parsing code comes from MediaWiki 1.10.0. Thanks to its
|
| 46 |
authors for releasing it under GPL.
|