Searched refs:text (Results 1 – 16 of 16) sorted by relevance
/web-master/vendor/michelf/php-markdown-extra/ |
H A D | markdown.php | 144 $text = '<p>'.$text.'</p>'; 317 $text = $this->detab($text); 320 $text = $this->hashHTMLBlocks($text); 330 $text = $this->$method($text); 546 $text = $this->unhash($text); 586 $text = $this->hashHTMLBlocks($text); 598 $text = $this->$method($text); 602 $text = $this->formParagraphs($text); 655 $text = $this->$method($text); 2025 $text = $tag . $text; [all …]
|
H A D | PHP Markdown Extra Readme.text | 19 Markdown is a text-to-HTML conversion tool for web writers. Markdown 20 allows you to write using an easy-to-read, easy-to-write plain text 23 "Markdown" is two things: a plain text markup syntax, and a software 24 tool, written in Perl, that converts the plain text markup to HTML. 92 [TextPattern][tp] use [Textile][tx] to format your text. You can 128 If you wish to use PHP Markdown with another text filter function 251 [link text](<http://url/with space> "optional title") 253 [link text][ref] 371 $html = $parser->transform($text); 492 be changed to their corresponding text. For instance, this: [all …]
|
/web-master/scripts/ |
H A D | rss_parser | 21 function scanLinks($text, $rootLink) { 45 function ProcessText($text) { 48 …$text = preg_replace('/<\?php\s+echo\s+make_image\s*\("([^"]*)",\s*"([^"]*)",\s+"([^"]*)"\);\s*\?>… 54 …$text = preg_replace('/<\?php\s+print_link\s*\("([^"]+)",\s*make_image\s*\([^\)]*\)\s*\);\s*\?>/',… 58 $text = preg_replace('/<\?php\s+print_link\s*\("([^"]+)",\s*"([^"]+)"\);\s*\?>/', "$2", $text); 59 …$text = preg_replace('/<\?php\s+print_link\s*\(\'([^\']+)\',\s*\'([^\']+)\'\);\s*\?>/', "$2", $tex… 60 …$text = preg_replace('/<\?php\s+print_link\s*\("([^"]+)",\s*make_image\s*\([^\)]*\)\s*\);\s*\?>/',… 63 $text = trim(strip_tags($text)); 64 return preg_replace("!\\s+!", " ", $text); 149 // And the text needs to be cleaned up [all …]
|
H A D | pregen_news | 101 case "text":
|
/web-master/include/ |
H A D | spam-lib.inc | 60 function check_spam_words ($text, $badwords) { 62 if (strpos($text, $badword) !== false) { 72 function check_spam_urls ($text, $httplimit = 4) { 73 if (preg_match('/\[(url|link)=[^]]+\]/', $text)) { 76 if (substr_count($text, 'http://') >= $httplimit) { 82 // Check with spam assassin if the text is spam or not 84 function check_spam_assassin ($text, $sa_path) { 86 $spam = shell_exec ('echo ' . escapeshellarg($text) . " | $sa_path -L -e 8");
|
H A D | functions.inc | 33 ["href" => "/manage/event.php", "text" => "Events"], 34 ["href" => "/manage/users.php", "text" => "Users"], 35 ["href" => "/manage/user-notes.php", "text" => "Notes"], 36 ["href" => "/manage/github.php", "text" => "Github"], 52 …, ["href" => "/manage/users.php?username=" . $_SESSION["credentials"][0], "text" => "My Profile"]); 53 $LINKS[] = ["href" => "/login.php?action=logout", "text" => "Logout"];
|
H A D | login.inc | 57 <td><input type="text" name="user" value="<?php echo $cuser;?>" />@php.net
|
/web-master/fetch/ |
H A D | allusers.php | 2 function error($text, $status) argument 18 echo json_encode(["error" => $text]);
|
H A D | user-profile.php | 2 function error($text, $status) argument 18 render(["error" => $text]);
|
H A D | user.php | 2 function error($text, $status) argument 18 echo json_encode(["error" => $text]);
|
/web-master/manage/ |
H A D | user-notes.php | 348 foreach ($note_del_reasons AS $reason => $text) { 349 …', urlencode((string)$reason), '" target=\"_blank\">', 'Delete Note: ', hsc($text), "</a><br />\n"; 809 function clean_note($text) argument 812 $text = highlight_php(trim($text), TRUE); 815 $text = preg_replace( 818 $text 821 return $text;
|
/web-master/ |
H A D | event.sql | 13 ldesc text,
|
H A D | users.sql | 13 /* we have a full-text index on name, username and email for searching, and we 58 note text,
|
H A D | note.sql | 20 note text,
|
/web-master/manage/js/ |
H A D | jquery.min.js | 12 …text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].own… 19 …text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:functio…
|
/web-master/.phan/internal_stubs/ |
H A D | mysql.phan_php | 272 * Returns the text of the error message from previous MySQL operation 275 * @return string the error text from the last MySQL function, or
|
Completed in 53 milliseconds