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

Adding Ability for Markdown Files to Specify Which Pattern It Should Be Associated With (ex. README.md) #18

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
27 changes: 15 additions & 12 deletions src/PatternLab/PatternData/Rules/DocumentationRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,20 @@ public function __construct($options) {
$this->ignoreProp = "";

}

public function run($depth, $ext, $path, $pathName, $name) {

// default vars
$patternSourceDir = Config::getOption("patternSourceDir");

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

if (isset($yaml["patternType"])) {
$name = $yaml["patternType"];
unset($yaml["patternType"]);
}

// load default vars
$patternType = PatternData::getPatternType();
$patternTypeDash = PatternData::getPatternTypeDash();
Expand All @@ -43,14 +54,7 @@ public function run($depth, $ext, $path, $pathName, $name) {
$doc = str_replace(".".$this->extProp,"",$name); // 00-colors
$docDash = $this->getPatternName(str_replace("_","",$doc),false); // colors
$docPartial = $patternTypeDash."-".$docDash;

// default vars
$patternSourceDir = Config::getOption("patternSourceDir");

// 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 @@ -68,9 +72,8 @@ public function run($depth, $ext, $path, $pathName, $name) {
break;
}
}

}

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

Expand Down