Lines Matching refs:atts

349         $atts = '';
473 list(, $tl, $atts, $content) = $m;
479 $atts = $this->pba($atts);
480 $line = "\t<" . $this->lT($tl) . "l$atts>\n\t\t<li>" . $this->graf($content);
528 $atts = $cite = $graf = $ext = '';
537 list(,$tag,$atts,$ext,$cite,$graf) = $m;
538 … list($o1, $o2, $content, $c2, $c1) = $this->fBlock(array(0,$tag,$atts,$ext,$cite,$graf));
550 … list($o1, $o2, $content, $c2, $c1) = $this->fBlock(array(0,$tag,$atts,$ext,$cite,$line));
574 $atts = '';
589 list(, $tag, $atts, $ext, $cite, $content) = $m;
590 $atts = $this->pba($atts);
597 $atts .= ' id="fn' . $fnid . '"';
598 if (strpos($atts, 'class=') === false)
599 $atts .= ' class="footnote"';
606 $o1 = "\t<blockquote$cite$atts>\n";
607 $o2 = "\t\t<p$atts>";
612 $o1 = "<pre$atts>";
613 $o2 = "<code$atts>";
625 $o1 = "<pre$atts>";
630 $o2 = "\t<$tag$atts>";
700 list(,, $tag, $atts, $cite, $content, $end) = $m;
702 $atts = $this->pba($atts);
703 $atts .= ($cite != '') ? 'cite="' . $cite . '"' : '';
705 $out = "<$tag$atts>$content$end</$tag>";
734 list(, $pre, $atts, $text, $title, $url, $slash, $post) = $m;
738 $atts = $this->pba($atts);
739 $atts .= ($title != '') ? ' title="' . $this->encode_html($title) . '"' : '';
749 …$out = '<a href="' . $this->encode_html($url . $slash) . '"' . $atts . $this->rel . '>' . $text . …
812 list(, $algn, $atts, $url) = $m;
813 $atts = $this->pba($atts);
814 $atts .= ($algn != '') ? ' align="' . $this->iAlign($algn) . '"' : '';
815 $atts .= (isset($m[4])) ? ' title="' . $m[4] . '"' : '';
816 $atts .= (isset($m[4])) ? ' alt="' . $m[4] . '"' : ' alt=""';
818 if ($size) $atts .= " $size[3]";
827 '<img src="' . $url . '"' . $atts . ' />',