From 155cf6aeea9ba7ecbc39face6442d3ce1b03ad8e Mon Sep 17 00:00:00 2001 From: Nils Schwabe Date: Wed, 4 Jun 2014 14:27:03 +0200 Subject: Add webinterface with functionallity --- management-interface/lib/api/classMarkdown.html | 739 ++++++++++++++++++++++++ 1 file changed, 739 insertions(+) create mode 100644 management-interface/lib/api/classMarkdown.html (limited to 'management-interface/lib/api/classMarkdown.html') diff --git a/management-interface/lib/api/classMarkdown.html b/management-interface/lib/api/classMarkdown.html new file mode 100644 index 0000000..c1fd983 --- /dev/null +++ b/management-interface/lib/api/classMarkdown.html @@ -0,0 +1,739 @@ + + + + + + + +Fat-Free Framework: Markdown Class Reference + + + + + + +
+
+ + + + + + +
+
Fat-Free Framework +  3.2.2 +  Overview Class List Hierarchy +
+
+
+ + +
+
+
+Public Member Functions | +Public Attributes | +Protected Member Functions | +Protected Attributes | +List of all members
+
+
Markdown Class Reference
+
+
+ +

Markdown-to-HTML converter. + More...

+
+ + Inheritance diagram for Markdown:
+
+
+ + + + + + + + + +

+Public Member Functions

 esc ($str)
 
 scan ($str)
 
 convert ($txt)
 
+ + + + +

+Public Attributes

$special
 Special characters.
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Protected Member Functions

 _blockquote ($str)
 
 _pre ($str)
 
 _fence ($hint, $str)
 
 _hr ()
 
 _atx ($type, $str)
 
 _setext ($str, $type)
 
 _li ($str)
 
 _raw ($str)
 
 _p ($str)
 
 _text ($str)
 
 _img ($str)
 
 _a ($str)
 
 _auto ($str)
 
 _code ($str)
 
 snip ($str)
 
 build ($str)
 
+ + + + +

+Protected Attributes

$blocks
 Parsing rules.
 
+ + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from Prefab
static instance ()
 
+

Detailed Description

+

Markdown-to-HTML converter.

+

Member Function Documentation

+ +
+
+ + + + + +
+ + + + + + + + +
Markdown::_a ( $str)
+
+protected
+
+

Process anchor span

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Markdown::_atx ( $type,
 $str 
)
+
+protected
+
+

Process atx-style heading

+
Returns
string
+
Parameters
+ + + +
$typestring
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Markdown::_auto ( $str)
+
+protected
+
+

Auto-convert links

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Markdown::_blockquote ( $str)
+
+protected
+
+

Process blockquote

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Markdown::_code ( $str)
+
+protected
+
+

Process code span

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Markdown::_fence ( $hint,
 $str 
)
+
+protected
+
+

Process fenced code block

+
Returns
string
+
Parameters
+ + + +
$hintstring
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Markdown::_hr ()
+
+protected
+
+

Process horizontal rule

+
Returns
string
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Markdown::_img ( $str)
+
+protected
+
+

Process image span

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Markdown::_li ( $str)
+
+protected
+
+

Process ordered/unordered list

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Markdown::_p ( $str)
+
+protected
+
+

Process paragraph

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Markdown::_pre ( $str)
+
+protected
+
+

Process whitespace-prefixed code block

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Markdown::_raw ( $str)
+
+protected
+
+

Ignore raw HTML

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Markdown::_setext ( $str,
 $type 
)
+
+protected
+
+

Process setext-style heading

+
Returns
string
+
Parameters
+ + + +
$strstring
$typestring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Markdown::_text ( $str)
+
+protected
+
+

Process strong/em/strikethrough spans

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Markdown::build ( $str)
+
+protected
+
+

Assemble blocks

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + + + + +
Markdown::convert ( $txt)
+
+

Render HTML equivalent of markdown

+
Returns
string
+
Parameters
+ + +
$txtstring
+
+
+ +
+
+ +
+
+ + + + + + + + +
Markdown::esc ( $str)
+
+

Convert characters to HTML entities

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + + + + +
Markdown::scan ( $str)
+
+

Scan line for convertible spans

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Markdown::snip ( $str)
+
+protected
+
+

Reduce multiple line feeds

+
Returns
string
+
Parameters
+ + +
$strstring
+
+
+ +
+
+
The documentation for this class was generated from the following file: +
-- cgit v1.2.3-55-g7522