Lines Matching refs:row

43 	foreach ($wikiMarkup as $row) {
44 $row = /*trim*/(utf8_encode($row));
46 $row = str_replace("\n", '', $row);
47 $row = str_replace(' & ', ' & ', $row);
48 $row = str_replace('<>', MELLEL_KLAMMER, $row);
49 $row = str_replace('</hi>', MELLEL_HIGHLIGHT, $row);
50 $row = str_replace('<hi #ffff00>', MELLEL_HIGHLIGHT, $row);
51 $row = str_replace('<hi #ff0000>', MELLEL_HIGHLIGHT, $row);
52 $row = str_replace('<hi #ffa500>', MELLEL_HIGHLIGHT, $row);
53 $row = str_replace('<hi #fa8072>', MELLEL_HIGHLIGHT, $row);
54 $row = str_replace('<hi #ffc0cb>', MELLEL_HIGHLIGHT, $row);
55 $row = str_replace('<hi #dda0dd>', MELLEL_HIGHLIGHT, $row);
56 $row = str_replace('<hi #800080>', MELLEL_HIGHLIGHT, $row);
57 $row = str_replace('<hi #ff00ff>', MELLEL_HIGHLIGHT, $row);
58 $row = str_replace('<hi #c0c0c0>', MELLEL_HIGHLIGHT, $row);
59 $row = str_replace('<hi #00ffff>', MELLEL_HIGHLIGHT, $row);
60 $row = str_replace('<hi #008080>', MELLEL_HIGHLIGHT, $row);
61 $row = str_replace('<hi #6495ed>', MELLEL_HIGHLIGHT, $row);
62 $row = str_replace('<hi #87ceeb>', MELLEL_HIGHLIGHT, $row);
63 $row = str_replace('<hi #7fffd4>', MELLEL_HIGHLIGHT, $row);
64 $row = str_replace('<hi #98fb98>', MELLEL_HIGHLIGHT, $row);
65 $row = str_replace('<hi #00ff00>', MELLEL_HIGHLIGHT, $row);
66 $row = str_replace('<hi #008000>', MELLEL_HIGHLIGHT, $row);
67 $row = str_replace('<hi #808000>', MELLEL_HIGHLIGHT, $row);
68 $row = strip_tags($row);
70 if (!strstr($row, '**') AND !strstr($row, '//') AND !strstr($row, '((')) {
71 if (substr($row, 0, 2) !== '==') {
72 $row = '<p style="ps-0" dir="ltr"><c style="cs-0">'.$row.'</c></p>';
75 if (substr($row, 0, 6) === '======') {
76 …$row = '<p style="ps-2" dir="ltr"><c style="cs-5">'./*trim*/(str_replace('=', '', $row)).'</c></p>…
78 …$row = '<p style="ps-3" dir="ltr"><c style="cs-1">'./*trim*/(str_replace('=', '', $row)).'</c></p>…
87 preg_match_all($patternBold, $row, $pregResultBold);
89 $row = preg_replace($patternBold, "</c><c style=\"cs-1\">$1</c><c style=\"cs-0\">", $row);
93 preg_match_all($patternItalic, $row, $pregResultItalic);
95 $row = preg_replace($patternItalic, "</c><c style=\"cs-4\">$1</c><c style=\"cs-0\">", $row);
99 preg_match_all($patternNote, $row, $pregResultNote);
101row = preg_replace($patternNote, "</c><c style='cs-1'><note stream='nsm-0'><p style='ps-1' dir='lt…
104 $row = '<p style="ps-0" dir="ltr"><c style="cs-0">'.$row.'</c></p>';
106 $mellelMarkup .= $row;