-
-
Notifications
You must be signed in to change notification settings - Fork 616
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [New] Added before_read_file_meta and get_page_data plugin hooks to customize page meta data * [Changed] Make get_files() ignore dotfiles * [Changed] Make get_pages() ignore Emacs and temp files * [Changed] Use composer version of Markdown * [Changed] Other small tweaks * [Fixed] Date warnings and other small bugs
- Loading branch information
Showing
19 changed files
with
3,637 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
# Composer | ||
composer.lock | ||
composer.phar | ||
|
||
# Twig | ||
vendor/twig/twig/doc/* | ||
vendor/twig/twig/ext/* | ||
vendor/twig/twig/test/* | ||
vendor/twig/twig/test/* | ||
|
||
# OS Generated | ||
.DS_Store* | ||
ehthumbs.db | ||
Icon? | ||
Thumbs.db | ||
*.swp | ||
|
||
# User themes | ||
themes/* | ||
!themes/index.html | ||
!themes/default/* | ||
|
||
# User config | ||
config.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"require": { | ||
"twig/twig": "1.12.*", | ||
"michelf/php-markdown": "1.3" | ||
"michelf/php-markdown": "1.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,4 @@ | |
$config['custom_setting'] = 'Hello'; // Can be accessed by {{ config.custom_setting }} in a theme | ||
*/ | ||
|
||
?> | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
|
||
// autoload.php generated by Composer | ||
// autoload.php @generated by Composer | ||
|
||
require_once __DIR__ . '/composer' . '/autoload_real.php'; | ||
|
||
return ComposerAutoloaderInit5115ee54a7a3f173d564b433db6d791a::getLoader(); | ||
return ComposerAutoloaderInit68d29614b81b64051229769b084d96b6::getLoader(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
<?php | ||
|
||
// autoload_namespaces.php generated by Composer | ||
// autoload_namespaces.php @generated by Composer | ||
|
||
$vendorDir = dirname(dirname(__FILE__)); | ||
$baseDir = dirname($vendorDir); | ||
|
||
return array( | ||
'Twig_' => $vendorDir . '/twig/twig/lib', | ||
'Twig_' => array($vendorDir . '/twig/twig/lib'), | ||
'Michelf' => array($vendorDir . '/michelf/php-markdown'), | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,5 +49,58 @@ | |
"keywords": [ | ||
"templating" | ||
] | ||
}, | ||
{ | ||
"name": "michelf/php-markdown", | ||
"version": "1.3", | ||
"version_normalized": "1.3.0.0", | ||
"source": { | ||
"type": "git", | ||
"url": "https://github.com/michelf/php-markdown.git", | ||
"reference": "fcdd3e0781ae40c2b9847874e0755ff4f5559688" | ||
}, | ||
"dist": { | ||
"type": "zip", | ||
"url": "https://api.github.com/repos/michelf/php-markdown/zipball/fcdd3e0781ae40c2b9847874e0755ff4f5559688", | ||
"reference": "fcdd3e0781ae40c2b9847874e0755ff4f5559688", | ||
"shasum": "" | ||
}, | ||
"require": { | ||
"php": ">=5.3.0" | ||
}, | ||
"time": "2013-04-11 18:53:11", | ||
"type": "library", | ||
"extra": { | ||
"branch-alias": { | ||
"dev-lib": "1.3.x-dev" | ||
} | ||
}, | ||
"installation-source": "dist", | ||
"autoload": { | ||
"psr-0": { | ||
"Michelf": "" | ||
} | ||
}, | ||
"notification-url": "https://packagist.org/downloads/", | ||
"license": [ | ||
"BSD-3-Clause" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Michel Fortin", | ||
"email": "[email protected]", | ||
"homepage": "http://michelf.ca/", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "John Gruber", | ||
"homepage": "http://daringfireball.net/" | ||
} | ||
], | ||
"description": "PHP Markdown", | ||
"homepage": "http://michelf.ca/projects/php-markdown/", | ||
"keywords": [ | ||
"markdown" | ||
] | ||
} | ||
] |
Oops, something went wrong.