Skip to content

Commit 064a050

Browse files
authored
Allowing Pattern State to be set in MD files front matter. Just like node versions. (#134)
1 parent 8f66d4f commit 064a050

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/PatternLab/PatternData/Rules/DocumentationRule.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,11 @@ public function run($depth, $ext, $path, $pathName, $name) {
8383
if (isset($title)) {
8484
$patternStoreData["nameClean"] = $title;
8585
}
86-
86+
87+
if (isset($yaml["state"])) {
88+
$patternStoreData["state"] = $yaml["state"];
89+
}
90+
8791
// if the pattern data store already exists make sure this data overwrites it
8892
$patternStoreData = (PatternData::checkOption($patternStoreKey)) ? array_replace_recursive(PatternData::getOption($patternStoreKey),$patternStoreData) : $patternStoreData;
8993
PatternData::setOption($patternStoreKey, $patternStoreData);

0 commit comments

Comments
 (0)