lift max-width limitation
[mdref/mdref] / mdref / Reference.php
index 153004fdafc83dd75ea4e072fcad0c1afcc298a8..892be7e096ab8da0f66e140bbd39dc4f2a53d8e4 100644 (file)
@@ -11,7 +11,7 @@ class Reference implements \IteratorAggregate {
         * @var array
         */
        private $repos = array();
-       
+
        /**
         * @param array $refs list of mdref repository paths
         */
@@ -21,7 +21,7 @@ class Reference implements \IteratorAggregate {
                        $this->repos[$repo->getName()] = $repo;
                }
        }
-       
+
        /**
         * Lookup the repo containing a ref entry
         * @param string $entry requested reference entry, e.g. "pq/Connection/exec"
@@ -35,7 +35,7 @@ class Reference implements \IteratorAggregate {
                        }
                }
        }
-       
+
        /**
         * Implements \IteratorAggregate
         * @return \ArrayIterator repository list
@@ -43,5 +43,26 @@ class Reference implements \IteratorAggregate {
        public function getIterator() {
                return new \ArrayIterator($this->repos);
        }
-       
+
+       public function formatAnchor($anchor) {
+               if (is_numeric($anchor)) {
+                       return "L$anchor";
+               }
+               return preg_replace("/[^[:alnum:]\.:_]/", ".", $anchor);
+       }
+
+       public function formatString($string) {
+               $md = \MarkdownDocument::createFromString($string);
+               $md->compile(\MarkdownDocument::AUTOLINK);
+               return $md->getHtml();
+       }
+
+       public function formatFile($file) {
+               $fd = fopen($file, "r");
+               $md = \MarkdownDocument::createFromStream($fd);
+               $md->compile(\MarkdownDocument::AUTOLINK | \MarkdownDocument::TOC);
+               $html = $md->getHtml();
+               fclose($fd);
+               return $html;
+       }
 }