DomCI : Update PHPDoc
git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3285 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
14
markdown.php
14
markdown.php
@@ -125,7 +125,7 @@ class markdown
|
|||||||
/** Return HTML code corresponding to the code block
|
/** Return HTML code corresponding to the code block
|
||||||
* @param array $text The Markdown text to translate split by \n
|
* @param array $text The Markdown text to translate split by \n
|
||||||
* @param integer $depth The depth of current bloc (in number of space)
|
* @param integer $depth The depth of current bloc (in number of space)
|
||||||
* @param integer $pos The start line number of the bloc
|
* @param integer &$pos The start line number of the bloc
|
||||||
*/
|
*/
|
||||||
private function typeCode ($text, $depth, &$pos)
|
private function typeCode ($text, $depth, &$pos)
|
||||||
{
|
{
|
||||||
@@ -151,7 +151,7 @@ class markdown
|
|||||||
/** Return HTML code corresponding to the OL block
|
/** Return HTML code corresponding to the OL block
|
||||||
* @param array $text The Markdown text to translate split by \n
|
* @param array $text The Markdown text to translate split by \n
|
||||||
* @param integer $depth The depth of current bloc (in number of space)
|
* @param integer $depth The depth of current bloc (in number of space)
|
||||||
* @param integer $pos The start line number of the bloc
|
* @param integer &$pos The start line number of the bloc
|
||||||
*/
|
*/
|
||||||
private function typeOL ($text, $depth, &$pos)
|
private function typeOL ($text, $depth, &$pos)
|
||||||
{
|
{
|
||||||
@@ -164,7 +164,7 @@ class markdown
|
|||||||
/** Return HTML code corresponding to the UL block
|
/** Return HTML code corresponding to the UL block
|
||||||
* @param array $text The Markdown text to translate split by \n
|
* @param array $text The Markdown text to translate split by \n
|
||||||
* @param integer $depth The depth of current bloc (in number of space)
|
* @param integer $depth The depth of current bloc (in number of space)
|
||||||
* @param integer $pos The start line number of the bloc
|
* @param integer &$pos The start line number of the bloc
|
||||||
*/
|
*/
|
||||||
private function typeUL ($text, $depth, &$pos)
|
private function typeUL ($text, $depth, &$pos)
|
||||||
{
|
{
|
||||||
@@ -177,7 +177,7 @@ class markdown
|
|||||||
/** Return the HTML code corresponding to the OL/UL block
|
/** Return the HTML code corresponding to the OL/UL block
|
||||||
* @param array $text The Markdown text to translate split by \n
|
* @param array $text The Markdown text to translate split by \n
|
||||||
* @param integer $depth The depth of current bloc (in number of space)
|
* @param integer $depth The depth of current bloc (in number of space)
|
||||||
* @param integer $pos The start line number of the bloc
|
* @param integer &$pos The start line number of the bloc
|
||||||
* @param string $type The block type : "ul" or "ol"
|
* @param string $type The block type : "ul" or "ol"
|
||||||
*/
|
*/
|
||||||
private function typeOLUL ($text, $depth, &$pos, $type)
|
private function typeOLUL ($text, $depth, &$pos, $type)
|
||||||
@@ -248,7 +248,7 @@ class markdown
|
|||||||
* empty line, and return an empty string
|
* empty line, and return an empty string
|
||||||
* @param string $text The Markdown text to translate split by \n
|
* @param string $text The Markdown text to translate split by \n
|
||||||
* @param integer $depth The depth of the current bloc (in number of space)
|
* @param integer $depth The depth of the current bloc (in number of space)
|
||||||
* @param integer $pos The start line number of the bloc
|
* @param integer &$pos The start line number of the bloc
|
||||||
*/
|
*/
|
||||||
private function typeNONE ($text, $depth, &$pos)
|
private function typeNONE ($text, $depth, &$pos)
|
||||||
{
|
{
|
||||||
@@ -260,7 +260,7 @@ class markdown
|
|||||||
/** Return HTML code corresponding to the P block
|
/** Return HTML code corresponding to the P block
|
||||||
* @param array $text The Markdown text to translate split by \n
|
* @param array $text The Markdown text to translate split by \n
|
||||||
* @param integer $depth The depth of current bloc (in number of space)
|
* @param integer $depth The depth of current bloc (in number of space)
|
||||||
* @param integer $pos The start line number of the bloc
|
* @param integer &$pos The start line number of the bloc
|
||||||
*/
|
*/
|
||||||
private function typeP ($text, $depth, &$pos)
|
private function typeP ($text, $depth, &$pos)
|
||||||
{
|
{
|
||||||
@@ -297,7 +297,7 @@ class markdown
|
|||||||
/** Detect the type of the text and call the appropriate function *
|
/** Detect the type of the text and call the appropriate function *
|
||||||
* @param array $text The Markdown text to translate split by \n
|
* @param array $text The Markdown text to translate split by \n
|
||||||
* @param integer $depth The depth of current bloc (in number of space)
|
* @param integer $depth The depth of current bloc (in number of space)
|
||||||
* @param integer $pos The start line number of the bloc
|
* @param integer &$pos The start line number of the bloc
|
||||||
* @return the HTML code
|
* @return the HTML code
|
||||||
*/
|
*/
|
||||||
private function detectBlock ($text, $depth, &$pos)
|
private function detectBlock ($text, $depth, &$pos)
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ class outputxml extends output
|
|||||||
|
|
||||||
/** function defination to convert array to xml
|
/** function defination to convert array to xml
|
||||||
@param mixed $data The data to be converted
|
@param mixed $data The data to be converted
|
||||||
@param string $xml The actual state of the XML file */
|
@param string &$xml The actual state of the XML file */
|
||||||
private function array_to_xml ($data, &$xml)
|
private function array_to_xml ($data, &$xml)
|
||||||
{
|
{
|
||||||
foreach($data as $key => $value)
|
foreach($data as $key => $value)
|
||||||
|
|||||||
Reference in New Issue
Block a user