Skip to content

Commit

Permalink
Added {.html} codeblock specification to Element.md.
Browse files Browse the repository at this point in the history
Updated a a few inline comments.
  • Loading branch information
jaywilliams committed Apr 10, 2009
1 parent f68c3c2 commit e6bfd71
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assets/menu.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Document Navigation Menu
*
* Example:
* $menu = new menu();
* $menu = new menu( 'docs/', '.md' );
* echo $menu->generate();
*
*/
Expand Down
2 changes: 1 addition & 1 deletion assets/toc.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Example:
*
* $toc = new TOC( $html );
* echo $toc->output_flat();
* echo $toc->generate();
*
*
* @author Jay Williams
Expand Down
1 change: 1 addition & 0 deletions docs/Element/Element.md
Original file line number Diff line number Diff line change
Expand Up @@ -1357,6 +1357,7 @@ Sets numerous attributes for the Element.

##### Resulting HTML

{.html}
<img id="myImage" src="whatever.gif" alt="whatever dude" />


Expand Down
7 changes: 6 additions & 1 deletion github.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@
*/
$config->log = 'github.log';






/**
* Verify that an authorized client is submitting the request...
*/
Expand Down Expand Up @@ -142,7 +147,7 @@

/**
* Otherwise, run through the changed files, and see if any files
* have been changed in the docs directory in the repository
* have been changed in the docs directory of the repository
*/
foreach ($files as $file) {
if (strpos($file,$config->repo_path) !== false) {
Expand Down
2 changes: 0 additions & 2 deletions mdocs.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
error_reporting(E_ALL);

/**
* @todo Create A GitHub update hook file, to keep the docs in sync with GitHub
*
* @todo Add a "clean url" (mod_rewrite) option to the Menu class
*/

Expand Down

0 comments on commit e6bfd71

Please sign in to comment.