Skip to content
This repository has been archived by the owner on Nov 7, 2020. It is now read-only.

Commit

Permalink
Fixing issues with method and property links not working.
Browse files Browse the repository at this point in the history
Removing showdown :)
  • Loading branch information
markstory committed Mar 6, 2010
1 parent 01eae17 commit 0e8decd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 54 deletions.
5 changes: 3 additions & 2 deletions views/helpers/api_doc.php
Expand Up @@ -81,8 +81,8 @@ public function __construct($config = array()) {
$this->setBasePath($view->getVar('basePath'));

$this->_Parser = new DocMarkdown();
$generator = new ApiLinkGenerator();
$this->_Parser->setLinkGenerator($generator);
$this->_generator = new ApiLinkGenerator();
$this->_Parser->setLinkGenerator($this->_generator);
}

/**
Expand Down Expand Up @@ -175,6 +175,7 @@ protected function _searchBasePath($filename) {
**/
public function setClassIndex($classList) {
$this->_classList = $classList;
$this->_generator->setClassIndex($classList);
}

/**
Expand Down
52 changes: 0 additions & 52 deletions webroot/js/showdown.js

This file was deleted.

0 comments on commit 0e8decd

Please sign in to comment.