mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-19 02:16:51 +01:00
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<class name="BBCodeParser" inherits="Reference" version="3.8">
|
|
<brief_description>
|
|
A class that parses bbcode into a class structure for easy manipulation, or processing.
|
|
</brief_description>
|
|
<description>
|
|
The BBCodeParser class works the same way as the HTMLParser class, except it parses BBCode, which is a bit simpler, so some complexity was removed.
|
|
BBCode was created for providing a safer and simpler format for formatting post on forums. It is very similar to html.
|
|
For example: [code][b]This text should would be bold if this bbcode was interpreted.[/b] [size=14]This text would have a font size of 14.[/size] etc.[/code]
|
|
</description>
|
|
<tutorials>
|
|
</tutorials>
|
|
<methods>
|
|
<method name="convert_to_string" qualifiers="const">
|
|
<return type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_root">
|
|
<return type="BBCodeParserTag" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="parse">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="print" qualifiers="const">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
</methods>
|
|
<constants>
|
|
</constants>
|
|
</class>
|