Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compile Templates Embedded in Markdown Files #19

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 40 additions & 3 deletions src/PatternLab/PatternData/Rules/DocumentationRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
use \PatternLab\PatternData;
use \PatternLab\Parsers\Documentation;
use \PatternLab\Timer;
use \PatternLab\Data;
use \PatternLab\PatternData\Exporters\PatternPathSrcExporter;
use \PatternLab\PatternEngine;

class DocumentationRule extends \PatternLab\PatternData\Rule {

Expand Down Expand Up @@ -49,8 +52,7 @@ public function run($depth, $ext, $path, $pathName, $name) {

// parse data
$text = file_get_contents($patternSourceDir.DIRECTORY_SEPARATOR.$pathName);
list($yaml,$markdown) = Documentation::parse($text);


// grab the title and unset it from the yaml so it doesn't get duped in the meta
if (isset($yaml["title"])) {
$title = $yaml["title"];
Expand All @@ -73,7 +75,42 @@ public function run($depth, $ext, $path, $pathName, $name) {

$category = ($patternSubtypeDoc) ? "patternSubtype" : "pattern";
$patternStoreKey = ($patternSubtypeDoc) ? $docPartial."-plsubtype" : $docPartial;


/**
* Setup the Pattern Loader so we can pre-render template markup used
* in our markdown files, prior to any markup getting parsed.
* Taken from Builder.php
*/
$ppdExporter = new PatternPathSrcExporter();
$patternPathSrc = $ppdExporter->run();
$options = array();
$options["patternPaths"] = $patternPathSrc;
$patternEngineBasePath = PatternEngine::getInstance()->getBasePath();
$patternLoaderClass = $patternEngineBasePath . "\Loaders\PatternLoader";
$patternLoader = new $patternLoaderClass($options);


// Combine local + global pattern data.
$data = array();
$globalData = Data::getPatternSpecificData($docPartial);
$localData = PatternData::getOption($docPartial)["data"];

if ($localData){
$data = array_replace_recursive($globalData, $localData);
} else {
$data = $globalData;
}

// Render the markdown content as a pattern, piping in the pattern-specific data from above.
$text = $patternLoader->render(array(
"pattern" => $text,
"data" => $data
));

// Finally parse the resulting content as normal markup; continue as usual.
list($yaml,$markdown) = Documentation::parse($text);


$patternStoreData = array("category" => $category,
"desc" => trim($markdown),
"descExists" => true,
Expand Down