Hi all people!
I'm creating a CMS as you might already know, and now I have a lil' problem.
Lets say: I have a textfile containing this:
[b]Some bold text[/b]
[i]Italic[/i]
- List item 1
- List item 2
- List item 3
# List item 1
# List item 2
# List item 3
And I want to convert it to:
<b>Some bold text</b>
<i>Italic</i>
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ul>
<ol>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ol>
The bold and italic work (with regexes), but how do I do the lists?
The '-' list should be transformed to
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ul>
And the '#' list to
<ol>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ol>
Does anybody have experience with this? Please help me. I'm using PHP 5.2.9